// JavaScript Document

function menu_hover ( id, hover )
{	
	var obj = document.getElementById("menu_" + id);
	
	if (hover) {
		obj.style.backgroundColor = "#5e5e5e";
		obj.style.color = "#FFFFFF";
		//obj.style.background = "url(images/nav-left-hover.jpg)";
		//obj.style.backgroundRepeat = "no-repeat";
		//obj.style.backgroundPosition = "left";
	}
	else {
		obj.style.backgroundColor = "#1e427d";
		obj.style.color				= "#ffffff";
	}
}

function item_hover (id, hover)
{	
	var obj = document.getElementById(id);
	
	if (hover)
	{
		obj.style.backgroundColor	= "#5e5e5e";
		obj.style.color				= "#FFFFFF";
	}
	else
	{
		obj.style.backgroundColor	= "#1e427d";
		obj.style.color				= "#FFFFFF";
	}
}
