/**
 * @author Gyver
 */
function HMChangeBg (obj, flag)
{
	if(flag)
	{
		obj.style.backgroundImage = "url(/images/HMenu-Over-Bg.gif)";
	}else{
		obj.style.backgroundImage = "";
	}
}

function HMChangeBgRight (obj, flag)
{
	if(flag)
	{
		obj.style.backgroundImage = "url(/images/HMenu-Over-Bg.gif)";
		//document.getElementById("HMenu_Main_Right").className = "HMenu_Main_Right_Over";
		document.getElementById("HMenu_Main_Right").style.backgroundPosition = "right -82px";
	}else{
		obj.style.backgroundImage = "";
		//document.getElementById("HMenu_Main_Right").className = "HMenu_Main_Right";
		document.getElementById("HMenu_Main_Right").style.backgroundPosition = "right 0px";
	}
}
