function showImage(id,id1)
{
	var test = document.getElementById(id);
	var link = document.getElementById(id1);
	/*test.style.backgroundColor="#FFE1A6";*/
	test.style.backgroundImage = "url(/themes/EIC/site_images/topnav_on.gif)";
	test.style.backgroundRepeat= "no-repeat";
	test.style.backgroundPosition= "top center";
	link.style.color = "#C72C27";
}
				
function hideImage(id,id1)
{
	var test = document.getElementById(id);
	var link = document.getElementById(id1);
	//test.style.backgroundColor="#CE2A29";
	test.style.backgroundImage= "url(/themes/EIC/site_images/top-nav-bg.gif)";
	test.style.backgroundRepeat= "repeat-x";
	link.style.color = "#FFFFFF";
}



