﻿// JScript File
function adArray() {
 for (i=0; i*2<adArray.arguments.length; i++) {
  this[i] = new Object();
  this[i].src = adArray.arguments[i*2];
  this[i].alt = 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;
}
var ads = new adArray(
"../images/TEPP/1.jpg","Filming of TEPP video 2000",
"../images/TEPP/2.jpg","TEPP exercise Kansas City, MO - 2006",
"../images/TEPP/3.jpg","TEPP exercise Kansas City, MO - 2006",
"../images/TEPP/4.jpg","TEPP exercise West Valley, NY - 2006",
"../images/TEPP/5.jpg","TEPP exercise West Valley, NY - 2006",
"../images/TEPP/6.jpg","TEPP exercise Lehigh Valley, PA - 2005",
"../images/TEPP/7.jpg","TEPP exercise Lehigh Valley, PA - 2005",
"../images/TEPP/8.jpg","TEPP exercise Barnwell, SC - 2004",
"../images/TEPP/9.jpg","TEPP exercise Barnwell, SC - 2004");
var ad_num = getAdNum(); 
document.write('<CENTER><TABLE CELLPADDING=0 CELLSPACING=1 BORDER=0 '
+'ALIGN=CENTER> '
+'<TR><TD><IMG SRC="'+ads[ad_num].src+'" alt="'+ads[ad_num].alt+'" '
+' BORDER=0 name="js_ad" /></TD></TR></TABLE></CENTER>');
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].alt = ads[ad_num].alt;
  setTimeout("rotateSponsor()",5000);
 }
}
setTimeout("rotateSponsor()",5000);
