
 

<!-- Begin 
var how_many_ads = 9; 
var now = new Date() 
var sec = now.getSeconds() 
var ad = sec % how_many_ads; 
ad +=1; 
if (ad==1) { 
url=""; 
alt="Photo of a student working on a laptop outdoors"; 
banner="images/photo1.jpg"; 
width="368"; 
height="184";
} 
if (ad==2) { 
url=""; 
alt="Photo of a student at a computer"; 
banner="images/photo2.jpg"; 
width="368"; 
height="184"; 
}
if (ad==3) { 
url=""; 
alt="Photo of a lady holding a minature globe"; 
banner="images/photo3.jpg"; 
width="368"; 
height="184"; 
} 
if (ad==4) { 
url=""; 
alt="Photo of a student at desk with a laptop"; 
banner="images/photo4.jpg"; 
width="368"; 
height="184"; 
}
if (ad==5) { 
url=""; 
alt="Photo of a student at desk with a laptop"; 
banner="images/photo5.jpg"; 
width="368"; 
height="184"; 
}
if (ad==6) { 
url=""; 
alt="Photo of a student working with an instructor"; 
banner="images/photo6.jpg"; 
width="368"; 
height="184"; 
} 
if (ad==7) { 
url=""; 
alt="Photo of a student in hallway"; 
banner="images/photo7.jpg"; 
width="368"; 
height="184"; 
} 
if (ad==8) { 
url=""; 
alt="Photo of a student working with an instructor"; 
banner="images/photo7.jpg"; 
width="368"; 
height="184"; 
} 
if (ad==9) { 
url=""; 
alt="Photo of a student doing homework"; 
banner="images/photo7.jpg"; 
width="368"; 
height="184"; 
}
document.write('<center>'); 
document.write('<img src=\"' + banner + '\" width=') 
document.write(width + ' height=' + height + ' '); 
document.write('alt=\"' + alt + '\" border="0"><br>'); 
document.write('</center>'); 
// End --> 