
var imgArray = new Array(5);

function menuOver(img)
{
	if (imgArray[img].src != null)
		document.topMenu.src = imgArray[img].src; 
	else
		setTimeout("menuOver(" + img + ")",10);
}

function menuOut()
{
	if (imgArray[0].src != null)
		document.topMenu.src = imgArray[0].src;
	else
		setTimeout("menuOut()",10);
}

function setNewDefault(img)
{
for (var i = 0; i < 5; i++) 	imgArray[i] = new Image();

	if (img != null && img >= 0)
	{
		switch (img)
			{
				//DEFAULT MENU - NONE SELECTED
				case 0: imgArray[0].src = "images/globals/topNav_menu_off.gif";
						imgArray[1].src = "images/globals/topNav_menu_highlights.gif";
						imgArray[2].src = "images/globals/topNav_menu_photos.gif";
						imgArray[3].src = "images/globals/topNav_menu_indepth.gif";
						imgArray[4].src = "images/globals/topNav_menu_rem.gif";
						break;

				//CAREER HIGHLIGHTS MENU - C.H. SELECTED
				case 1: imgArray[0].src = "images/globals/topNav_menu_highlights.gif";
						imgArray[1].src = "images/globals/topNav_menu_highlights.gif";
						imgArray[2].src = "images/globals/topNav_menu_highlights_photos.gif";
						imgArray[3].src = "images/globals/topNav_menu_highlights_indepth.gif";
						imgArray[4].src = "images/globals/topNav_menu_highlights_rem.gif";
						break;
				
				//PHOTOS MENU - PHOTOS SELECTED
				case 2: imgArray[0].src = "images/globals/topNav_menu_photos.gif";
						imgArray[1].src = "images/globals/topNav_menu_photo_hightlight.gif";
						imgArray[2].src = "images/globals/topNav_menu_photos.gif";
						imgArray[3].src = "images/globals/topNav_menu_photo_indepth.gif";
						imgArray[4].src = "images/globals/topNav_menu_photo_rem.gif";
						break;
						
				
				//INDEPTH MENU - INDEPTH SELECTED
				case 3: imgArray[0].src = "images/globals/topNav_menu_indepth.gif";
						imgArray[1].src = "images/globals/topNav_menu_indepth_career.gif";
						imgArray[2].src = "images/globals/topNav_menu_indepth_photos.gif";
						imgArray[3].src = "images/globals/topNav_menu_indepth.gif";
						imgArray[4].src = "images/globals/topNav_menu_indepth_rem.gif";
						break;
				
				//REMEMBRANCES MENU - REM. SELECTED
				case 4: imgArray[0].src = "images/globals/topNav_menu_rem.gif";
						imgArray[1].src = "images/globals/topNav_menu_rem_highlights.gif";
						imgArray[2].src = "images/globals/topNav_menu_rem_photos.gif";
						imgArray[3].src = "images/globals/topNav_menu_rem_indepth.gif";
						imgArray[4].src = "images/globals/topNav_menu_rem.gif";
						break;						

			}
	}
}

function showPic(section,id) 
{
	window.open("Gallery.aspx?section=" + section + "&img=" + id,'gallery','width=450,height=470,left=0,top=0');
}
		

