	var currentItem=''; //选中左侧菜单项
	var  subNavi=''; //当前选中导航项子项
	var currentNavi =''; //当前选中导航项
    var currentNaviIndex=0;//当前显示图片的索引
	
	function menuClick(obj,subObj)
	{
        if(subObj=="")
        {
			menuSelected(obj)
        }
        else
        {
		    if($(subObj).style.display=="none")
		    {
			    $(subObj).style.display="block";
			    menuSelected(obj)
		    }
		    else
		    {
			    $(subObj).style.display="none";
			    $(obj).className="menuItem";
		    }
		}
	}
	function menuOver(obj)
	{
		if(currentItem!=obj)
		{
			 $(obj).className="menuItemOver";
		}
	}
	function menuOut(obj)
	{
		if(currentItem!=obj)
		{
			 $(obj).className="menuItem";
		}
	}
	function menuSelected(obj)
	{
		if(currentItem!=''&&currentItem!=obj)
		{
			$(currentItem).className="menuItem";
		}
		if($(obj)!=null)
		{
		    $(obj).className="menuItemOver";
		}
		currentItem=obj;
	}
	function $(obj)
	{
		return document.getElementById(obj);
	}	
	
	function naviSelected(obj)
	{
		if(currentNavi!=''&&currentNavi!=obj)
		{
			$(currentNavi).className="naviItem";
		}
		$(obj).className="naviItemOver";
		currentNavi=obj;
	}
	
	 function naviOver(obj,showSub)
    {
        if(showSub==1)
        {
            $(obj).style.display="block";
        }
        if(subNavi!=''&&subNavi!=obj)
        {
            $(subNavi).style.display="none"; 
        }
        
        if(showSub==1)
        {
            subNavi=obj;
        }
        
    }
    function naviOut(obj)
    {
        $(obj).style.display="none";
        subNavi="";
    }
    
    function leftItemSelected(obj)
	{
		if($(obj)!=null)
		{
	        $(obj).className="menuItemOver";
	    }
	    currentItem=obj;
	}
	
	function selectedNavi2(naviIndex)
	{
        $("Navi0"+naviIndex).src="img/m/"+naviIndex+".jpg";
        
        if(currentNaviIndex!=0&&currentNaviIndex!=naviIndex)
        {	
            $("Navi0"+currentNaviIndex).src="img/m/0"+currentNaviIndex+".jpg";
        }
        currentNaviIndex=naviIndex;
	}
	function selectedNavi(naviIndex)
	{
        //$("Navi0"+naviIndex).src="../img/navi/"+naviIndex+".jpg";
        $("Navi0"+naviIndex).className="naviItemOver";
        if(currentNaviIndex!=0&&currentNaviIndex!=naviIndex)
        {
            //$("Navi0"+currentNaviIndex).src="../img/navi/0"+currentNaviIndex+".jpg";
            $("Navi0"+currentNaviIndex).className="naviItem";
        }
        currentNaviIndex=naviIndex;
	}
