function Mover(mItem){
	document.getElementById(mItem).style.background="url(img/menu-bg-over.gif) repeat-x";
	document.getElementById(mItem+'p').style.background="url(img/menu-pass-hover-right.gif) repeat-x";
	document.getElementById(mItem).style.color="#0094d9";
}
function Mout(mItem){
	document.getElementById(mItem).style.background="";
	document.getElementById(mItem+'p').style.background="url(img/menu-pass.gif) no-repeat right";
	document.getElementById(mItem).style.color="#fff";
}

