// THIS PAGE HAS THE ROLLOVER FUNCTIONS AND THE ROLLOVERS FOR THE LEFT NAV BAR
// THE FUNCTIONS CAN BE STILL USED BY OTHER ROLLOVERS


// 	Note: 	The name of each image has been set to rollOver# where # is the index.
//			This helps searching for the location of each rollOver in the source.


var offImages = new Array();

offImages[0] = new Image();
offImages[1] = new Image();
offImages[2] = new Image();
offImages[3] = new Image();
offImages[4] = new Image();
offImages[5] = new Image();
offImages[6] = new Image();
offImages[7] = new Image();
offImages[8] = new Image();
offImages[9] = new Image();
offImages[10] = new Image();
offImages[11] = new Image();
offImages[12] = new Image();
offImages[13] = new Image();
offImages[14] = new Image();
offImages[15] = new Image();
offImages[16] = new Image();

offImages[0].src = "http://www.metrodetroitasa.com/images/asa_nav_about.gif";
offImages[1].src = "http://www.metrodetroitasa.com/images/asa_nav_board.gif";
offImages[2].src = "http://www.metrodetroitasa.com/images/asa_nav_adult.gif";
offImages[3].src = "http://www.metrodetroitasa.com/images/asa_nav_youth.gif";
offImages[4].src = "http://www.metrodetroitasa.com/images/asa_nav_regforms.gif";
offImages[5].src = "http://www.metrodetroitasa.com/images/asa_nav_umpires.gif";
offImages[6].src = "http://www.metrodetroitasa.com/images/asa_nav_equiprules.gif";
offImages[7].src = "http://www.metrodetroitasa.com/images/asa_nav_agency.gif";
offImages[8].src = "http://www.metrodetroitasa.com/images/asa_nav_halloffame.gif";
offImages[9].src = "http://www.metrodetroitasa.com/images/asa_nav_faq.gif";
offImages[10].src = "http://www.metrodetroitasa.com/images/asa_nav_links.gif";
offImages[11].src = "http://www.metrodetroitasa.com/images/asa_nav_contact.gif";
offImages[12].src = "http://www.metrodetroitasa.com/images/asa_nav_blank.gif";
offImages[13].src = "http://www.metrodetroitasa.com/images/asa_nav_blank.gif";
offImages[14].src = "http://www.metrodetroitasa.com/images/asa_nav_blank.gif";
offImages[15].src = "http://www.metrodetroitasa.com/images/asa_nav_blank.gif";
offImages[16].src = "http://www.metrodetroitasa.com/images/asa_nav_blank.gif";


var onImages = new Array();

onImages[0] = new Image();
onImages[1] = new Image();
onImages[2] = new Image();
onImages[3] = new Image();
onImages[4] = new Image();
onImages[5] = new Image();
onImages[6] = new Image();
onImages[7] = new Image();
onImages[8] = new Image();
onImages[9] = new Image();
onImages[10] = new Image();
onImages[11] = new Image();
onImages[12] = new Image();
onImages[13] = new Image();
onImages[14] = new Image();
onImages[15] = new Image();
onImages[16] = new Image();

onImages[0].src = "http://www.metrodetroitasa.com/images/asa_nav_about-h.gif";
onImages[1].src = "http://www.metrodetroitasa.com/images/asa_nav_board-r.gif";
onImages[2].src = "http://www.metrodetroitasa.com/images/asa_nav_adult-r.gif";
onImages[3].src = "http://www.metrodetroitasa.com/images/asa_nav_youth-r.gif";
onImages[4].src = "http://www.metrodetroitasa.com/images/asa_nav_regforms-r.gif";
onImages[5].src = "http://www.metrodetroitasa.com/images/asa_nav_umpires-r.gif";
onImages[6].src = "http://www.metrodetroitasa.com/images/asa_nav_equiprules-r.gif";
onImages[7].src = "http://www.metrodetroitasa.com/images/asa_nav_agency-r.gif";
onImages[8].src = "http://www.metrodetroitasa.com/images/asa_nav_halloffame-r.gif";
onImages[9].src = "http://www.metrodetroitasa.com/images/asa_nav_faq-r.gif";
onImages[10].src = "http://www.metrodetroitasa.com/images/asa_nav_links-r.gif";
onImages[11].src = "http://www.metrodetroitasa.com/images/asa_nav_contact-r.gif";
onImages[12].src = "http://www.metrodetroitasa.com/images/asa_nav_blank-r.gif";
onImages[13].src = "http://www.metrodetroitasa.com/images/asa_nav_blank-r.gif";
onImages[14].src = "http://www.metrodetroitasa.com/images/asa_nav_blank-r.gif";
onImages[15].src = "http://www.metrodetroitasa.com/images/asa_nav_blank-r.gif";
onImages[16].src = "http://www.metrodetroitasa.com/images/asa_nav_blank-r.gif";


function changeImage(imageIndex) {
	document['rollOver' + imageIndex].src = onImages[imageIndex].src;
}


function putBackImage(imageIndex) {
	document['rollOver' + imageIndex].src = offImages[imageIndex].src;
}
