<!--Hide From Older Broswer

function jumpPage(newLoc){
		newPage=newLoc.options[newLoc.selectedIndex].value
		
		if (newPage !=""){
			window.location=newPage
		}
	}
	
	function loadpage() { 
index1 = 0;
listofimages = new Array(5);
listofimages[0] = new Image(125,100)
listofimages[0].src = "http://www.cerritos.edu/hpea/_styles/images/have_a_question.jpg"
listofimages[1] = new Image(125,100)
listofimages[1].src = "http://www.cerritos.edu/hpea/_styles/images/fitness_spec.jpg"
listofimages[2] = new Image(125,100)
listofimages[2].src = "http://www.cerritos.edu/hpea/_styles/images/COA.jpg"
listofimages[3] = new Image(125,100)
listofimages[3].src = "http://www.cerritos.edu/hpea/_styles/images/athletic_trainer.jpg"
listofimages[4] = new Image(125,100)
listofimages[4].src = "http://www.cerritos.edu/hpea/_styles/images/pepsi.jpg"
//listofimages[6] = new Image(125,100)
//listofimages[6].src = ""

thetimer = setTimeout("changeimage()", 4000);

} 

function changeimage(){ 
index1 = index1 + 1
if (index1 == "5") { 
index1 = 0 
} 
imagesource = listofimages[index1].src
window.document.banner1.src = imagesource

thetimer = setTimeout("changeimage()", 4000);
} 

function changepage() { 
if (index1 == 0) { 
newlocation = "http://www.cerritos.edu/hpea/hpea_faculty.asp"
}
else if (index1 == 1) { 
newlocation = "http://www.cerritos.edu/hpea/dc_programs/"
}
else if (index1 == 2) { 
window.open("http://www.coasports.org")
}
else if (index1 == 3) { 
newlocation = "http://www.cerritos.edu/hpea/dc_programs/"
}
else if (index1 == 4) { 
window.open("http://www.pepsi.com")
}
//else if (index1 == 5) { 
//newlocation = ""
//}
location = newlocation 
}

//-->