//handmade javascripts for mid klamath watershed council site' homepage


//this array holds data for preloading the mouseover menu images so they are stored on the viewer's computer.  if you change any of the menu graphics you need to place the name of the file to be used for the mouseover in this array.  be sure all menu graphics go in the /template/images folder.

var locationRef="../template/images/"; //gives the relative URL from this folder to the one containing menu images (/template/images)
var menuImageData=new Array () //this array holds display image URL 
menuImageData[0]=["MenuHome_on.png"];
menuImageData[1]=["MenuPrograms_on.png"];
menuImageData[2]=["MenuAboutUs_on.png"];
menuImageData[3]=["MenuMidKlamath_on.png"];
menuImageData[4]=["MenuWatershedCenter_on.png"];
menuImageData[5]=["MenuGetInvolved_on.png"];
menuImageData[6]=["MenuPublications_on.png"];
menuImageData[7]=["MenuContact_on.png"];
menuImageData[8]=["MenuNewsInfo_on.png"];

//this array preloads the menu images 
var preLoadMenuImage = new Array ();
for (i=0; i < menuImageData.length; i++) {
preLoadMenuImage[i] = new Image();
preLoadMenuImage[i].src = locationRef+menuImageData[i];}

