<!--
function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].href = adArray.arguments[i*2+1];
 }
 this.length = i;
}
function getAdNum() {
 dat = new Date();
 dat = (dat.getTime()+"").charAt(8);
 if (dat.length == 1)
  ad_num = dat%ads.length;
 else
  ad_num = 0;
 return ad_num;
}
 
/*this array follows this pattern -> path to first image, first image link, path to second image, second image link....*/

var ads = new adArray(
"http://www.employeenetwork.com/bannergcr.jpg",
"http://thetrain.com/southwestcorporate/",
"http://www.employeenetwork.com/london_banner.jpg",
"http://www.employeenetwork.com/london.htm",
"http://www.employeenetwork.com/sedona_banner_400x71.jpg",
"http://www.employeenetwork.com/sedonareal.html",
"http://www.employeenetwork.com/bannerenterprise.jpg",
"http://www.enterprise.com/car_rental/deeplinkmap.do?bid=002&cust=50C0010",
"http://www.employeenetwork.com/phoenix_zoo.gif",
"http://www.employeenetwork.com/phxzoo.html"

);


var ad_num = getAdNum(); // don't change this line

document.write(' '
+'<A  target="Main" href="'+ads[ad_num].href+'"><IMG SRC="'+ads[ad_num].src+'" '
+'height="71" width="400" border="0" name="js_ad"></a>');

// ****** YOU NEED NOT MODIFY ANYTHING THAT IS NOT IN BETWEEN THESE TWO COMMENTS ****

link_num = document.links.length-1;

function rotateSponsor() {
 if (document.images) {
  ad_num = (ad_num+1)%ads.length;
  document.js_ad.src = ads[ad_num].src;
  document.links[link_num].href = ads[ad_num].href;
  setTimeout("rotateSponsor()",5000);
 }
}
setTimeout("rotateSponsor()",5000);

// -->
