function MenuOver(id)
{
	d=document;
	if(d.getElementById && d.getElementById(id+"_1")){dg=d.getElementById(id+"_1");if(dg.style && !dg.style.backgroundColor){dg.style.backgroundColor="#C43B00";}else if(dg.style && dg.style.backgroundColor=="#C43B00"){dg.style.backgroundcolor="selected";}}
	if(d.getElementById && d.getElementById(id+"_2")){dg=d.getElementById(id+"_2");if(dg.style && !dg.style.backgroundColor){dg.style.backgroundColor="#C43B00";}else if(dg.style && dg.style.backgroundColor=="#C43B00"){dg.style.backgroundcolor="selected";}}
}
function MenuOut(id)
{
	d=document;
	if(d.getElementById && d.getElementById(id+"_1")){dg=d.getElementById(id+"_1");if(dg.style && !dg.style.backgroundcolor){dg.style.backgroundColor="";}}
	if(d.getElementById && d.getElementById(id+"_2")){dg=d.getElementById(id+"_2");if(dg.style && !dg.style.backgroundcolor){dg.style.backgroundColor="";}}
}

