coeImages = new Array("/HomelandSecurity/anImages/911Responders.jpg",
			"/HomelandSecurity/anImages/agCombine.jpg",
			"/HomelandSecurity/anImages/apples.jpg",
			"/HomelandSecurity/anImages/asbestos.jpg",
			"/HomelandSecurity/anImages/blueLt.jpg",
			"/HomelandSecurity/anImages/calfTagged.jpg",
			"/HomelandSecurity/anImages/cell911.jpg",
			"/HomelandSecurity/anImages/chemPplant.jpg",
			"/HomelandSecurity/anImages/chinook.jpg",
			"/HomelandSecurity/anImages/cleanup2.jpg",
			"/HomelandSecurity/anImages/consulting.jpg",
			"/HomelandSecurity/anImages/craneSunset.jpg",
			"/HomelandSecurity/anImages/crtlBurn.jpg",
			"/HomelandSecurity/anImages/dam1.jpg",
			"/HomelandSecurity/anImages/dentistry.jpg",
			"/HomelandSecurity/anImages/dumptrk.jpg",
			"/HomelandSecurity/anImages/excavator.jpg",
			"/HomelandSecurity/anImages/firetruck2.jpg",
			"/HomelandSecurity/anImages/irrigation.jpg",
			"/HomelandSecurity/anImages/litDam.jpg",
			"/HomelandSecurity/anImages/microGear.jpg",
			"/HomelandSecurity/anImages/quake1.jpg",
			"/HomelandSecurity/anImages/respirator.jpg")
    imgCt = coeImages.length
    firstTime = true

 function rotate() {
    if (document.images) {
        if (firstTime) {
            thisPix = Math.floor((Math.random() * imgCt))
            firstTime = false
        }
        else {
            thisPix++
            if (thisPix == imgCt) {
                thisPix = 0
            }
        }
        document.firstResp.src=coeImages[thisPix]
        setTimeout("rotate()", 3 * 1000)
    }
 }
 window.onload = rotate;

<!-- Countdown function: days until the class reunion // --> 

 menu_status = new Array();

function showHide(theid){
    if (document.getElementById) {
    var switch_id = document.getElementById(theid);

        if(menu_status[theid] != 'show') {
           switch_id.className = 'show';
           menu_status[theid] = 'show';
        }else{
           switch_id.className = 'hide';
           menu_status[theid] = 'hide';
        }
    }
}



function bookmark(url, description)
{
netscape="Netscape User's hit CTRL+D to add a bookmark to this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}

/**********************************************************
			 Test Menus
***********************************************************/

function switchMenu(obj) {
var el = document.getElementById(obj);
if ( el.style.display != 'none' ) {
el.style.display = 'none';
}
else {
el.style.display = '';
}
}


