/*控制主导航鼠标样式*/

    function NavBg(nav)
    {
      document.getElementById("aboutus").style.backgroundColor="#43949f";
      document.getElementById("aboutus").style.backgroundImage="url(images/arrowblue.gif)";
    }
    function ChangeNavBg(id,nav)
    { 
      
      if(document.getElementById(id).id!=nav)
      {
        document.getElementById(id).style.backgroundColor="#43949f";
        document.getElementById(id).style.backgroundImage="url(images/arrowblue.gif)";
      }
      else
      {
        document.getElementById(id).style.backgroundColor="#43949f";
        document.getElementById(id).style.backgroundImage="url(images/arrowblue.gif)";
      }
    }
    function UnChangeNavBg(id,nav)
    {
      if(document.getElementById(id).id!=nav)
      {
        document.getElementById(id).style.backgroundColor="#9eb701";
        document.getElementById(id).style.backgroundImage="url(images/arrow.gif)";
      }
      else
      {
        document.getElementById(id).style.backgroundColor="#43949f";
        document.getElementById(id).style.backgroundImage="url(images/arrowblue.gif)";
      }
    }
    
    function OnNav(navid,i)
    {
      if(navid!=i)
      {
      document.getElementById(navid).style.backgroundImage='url(images/index_r2_c2.gif)';
      }
      else
      {
      document.getElementById(navid).style.backgroundImage='url(images/index_r2_c2.gif)';
      }
    }
    function OutNav(navid,i)
    {
      if(navid!=i)
      {
      document.getElementById(navid).style.backgroundImage='url(images/index_r2_c4.gif)';
      }
      else
      {
      document.getElementById(navid).style.backgroundImage='url(images/index_r2_c2.gif)';
      }
    }
