function HighlightButton1(caller)

{
	//old menu button
	//caller.style.backgroundImage = "url(images/button1f.jpg)";
	caller.style.backgroundColor = '#529490';
	caller.style.textDecoration = 'underline';
	document.body.style.cursor = 'pointer';

}



function UnHighlightButton1(caller)

{
	// old menu button
	//caller.style.backgroundImage = "url(images/button1.jpg)";
	caller.style.backgroundColor = 'transparent';
	caller.style.textDecoration = 'none';
	document.body.style.cursor = 'default';

}



function NavTo(target)

{

	window.location = target;

}



//Preload the menu image

highlightedButton = new Image()

highlightedButton.src = "images/button1f.jpg";



button = new Image()

button.src = "images/button1.jpg";



