function gn_hnOver(id,val)
{
	var str, id2;
	if (val == 0)
	{
		id2 = id + "_text";
		document.getElementById(id).setAttribute("background","topmenu_off.jpg");
		document.getElementById(id2).setAttribute("color","black");
	}
	else
	{
		id2 = id + "_text";
		document.getElementById(id).setAttribute("background","topmenu_on.jpg");	
		document.getElementById(id2).setAttribute("color","white");		
	}
}


function gn_lnOver(id, val)
{
	var str, id2;
	if (val == 0)
	{
		document.getElementById(id).setAttribute("background","menubg1_off.jpg");
	}
	else
	{
		document.getElementById(id).setAttribute("background","menubg1.jpg");	
	}
}