<!-- 
var how_many_ads = 14; 
var now = new Date() 
var sec = now.getSeconds() 
var ad = sec % how_many_ads; 
ad +=1; 
if (ad==1) { 
alt="Battle Mountain overlook"; banner="images/wyopics/battlemtnoverlook.jpg"; 
width="240"; height="180"; 
} 
if (ad==2) { 
alt="Photo of the Wyoming Capitol building"; banner="images/wyopics/capitol1.jpg"; width="240"; height="180";
} 
if (ad==3) { 
alt="Photo of a statue of a bison in from of the Wyoming Capital building"; banner="images/wyopics/capitol.jpg"; width="240"; height="180"; 
} 
if (ad==4) { 
alt="Photo of Devil's Tower"; banner="images/wyopics/devilstower2.jpg"; width="240"; height="180"; 
}
if (ad==5) { 
alt="Photo of Devil's Tower at night"; banner="images/wyopics/encampment.jpg"; width="240"; height="180"; 
}
if (ad==6) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/natlforest.jpg"; width="240"; height="180"; 
}
if (ad==7) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/redtetons.jpg"; width="240"; height="180"; 
}
if (ad==8) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/riverroad.jpg"; width="240"; height="180"; 
}
if (ad==9) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/vedauwoo.jpg"; width="240"; height="180"; 
}
if (ad==10) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/wyoroad1.jpg"; width="240"; height="180"; 
}
if (ad==11) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/wyoroad2.jpg"; width="240"; height="180"; 
}
if (ad==12) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/wyoroad3.jpg"; width="240"; height="180"; 
}
if (ad==13) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/wyoroad4.jpg"; width="240"; height="180"; 
}
if (ad==14) { 
alt="Photo of a Crossing Guard Helping Kids Cross a Street to School"; banner="images/wyopics/devilstower2.jpg"; width="240"; height="180"; 
}
document.write('<img src=\"' + banner + '\" width=') 
document.write(width + ' height=' + height + ' '); 
document.write('alt=\"' + alt + '\" border=1 vspace=1 hspace=10>'); 
// --> 