var how_many_ads = 6;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
// if (ad==number) {
//txt="This is a blank example. Be sure to end the entry with a period.";
//url="Enter the link this should go to";
//alt="Enter alt text that loads in case the image doesn't";
//image="Enter the link to the image. Then you're finished!";
//}
if (ad==1) {
url="http://www.smith.edu/sccs/index.php";
alt="Students Reading Book";
image="http://www.smith.edu/sccs/images/00124-2-students-studing.jpg";
}
if (ad==2) {
url="http://www.smith.edu/sccs/index.php";
alt="Student Writing On Board";
image="http://www.smith.edu/sccs/images/photo_rotate_studentatboard.jpg";
}
if (ad==3) {
url="http://www.smith.edu/sccs/index.php";
alt="Student Looking At Butterfly";
image="http://www.smith.edu/sccs/images/photo_rotate_studentbutterfly.jpg";
}
if (ad==4) {
url="http://www.smith.edu/sccs/index.php";
alt="Students Having Fun Outside";
image="http://www.smith.edu/sccs/images/photo_rotate_studentondeck.jpg";
}
if (ad==5) {
url="http://www.smith.edu/sccs/index.php";
alt="Students Writing On Floor";
image="http://www.smith.edu/sccs/images/photo_rotate_studentwriting.jpg";
}
if (ad==6) {
url="http://www.smith.edu/sccs/index.php";
alt="Teacher With Class";
image="http://www.smith.edu/sccs/images/photo_rotate_teacherclass.jpg";
}



document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + image + '\"'); 
// width=');
document.write('border=\"0\"');
//document.write('width=\"20\" height=\"75\" align=\"BOTTOM\" border=\"0\" natu$
document.write('alt=\"' + alt + '\"></a><br>');
//document.write(width + ' height=' + height + ' ');  
//document.write('alt=\"' + alt + '\" border=0><br>');
document.write('</center>');
// -->

