<!-- hide
imgroll = new Array();
imgroll[0] = "";// ok to leave empty
imgroll[1] = "niwa-nav-schedules";
imgroll[2] = "niwa-nav-tickets";
imgroll[3] = "niwa-nav-radio";
imgroll[4] = "niwa-nav-boosters";
imgroll[5] = "niwa-nav-store";
onimages = [];
offimages = [];
for(i=0; i < imgroll.length; i++){
	onimages[i] =  new Image();
	onimages[i].src = "http://graphics.ocsn.com/schools/niwa/graphics/"+imgroll[i]+"-on.gif";
	offimages[i] =  new Image();
	offimages[i].src = "http://graphics.ocsn.com/schools/niwa/graphics/"+imgroll[i]+"-off.gif";
}
function imgOn(imageName) {
	num = imageName.split("e");
	document[imageName].src = onimages[num[1]].src;  
}
function imgOff(imageName) {  
	num = imageName.split("e");
	document[imageName].src = offimages[num[1]].src;  
}
// done hiding -->