var menu_imageNames = new Array();
var menu_currentOver;
var curView = '-1';

function menu_preLoad()
{
	var tempImage;

	menu_imageNames[0] = "home";
	menu_imageNames[1] = "portfolio";
	menu_imageNames[2] = "hosting";
	menu_imageNames[3] = "contact";
	
	for (var i=0; i<menu_imageNames.length; i++)
	{
		// Preload swap images
		tempImage = new Image();
		tempImage.src = "navbar/" + menu_imageNames[i] + "_over.gif";
	}

	//curView = cur;
	//highLightChoice();
}


function menu_mouseOver(theColor)
{
	document.images[theColor].src = "navbar/" + theColor + "_over.gif";	
	menu_currentOver = theColor;
}

function menu_mouseOut()
{
	//if (menu_currentOver != curView)
		document.images[menu_currentOver].src = "navbar/" + menu_currentOver + ".gif";	
}

function highLightChoice()
{
	if (curView != 'none')
		document.images[curView].src = "navbar/" + curView + "_over.gif";
}
