
function OverLv1Menu(div){
	if(div && div.className == "m_lv1_unsel")
	{	
		div.className="m_lv1_over";
	//	var top    = document.getElementById(div.id+"_top");
	//	var bottom = document.getElementById(div.id+"_bottom");
	///	if(top && bottom){			
	//		top.className ="m_line_top";
	//		bottom.className ="m_line_bottom";
			eval(div.id+"_top.className ='m_line_top'");
			eval(div.id+"_bottom.className ='m_line_bottom'");
	//		return true;
	//	}
	}
}

function OutLv1Menu(div){	
	if(div && div.className == "m_lv1_over")
	{
		div.className="m_lv1_unsel";
		//var top    = document.getElementById(div.id+"_top");
		//var bottom = document.getElementById(div.id+"_bottom");
		//if(top && bottom){			
			//top.className ="m_line_null";
			//bottom.className ="m_line_null";
			//return true;
			eval(div.id+"_top.className ='m_line_null'");
			eval(div.id+"_bottom.className ='m_line_null'");
		//}
	}
}