    var it=1;
    
  function thoat1(id)
  {
    if(id!=it)
    {
   
       document.getElementById("menu_index"+id).style.color="#ffffff";
    }
  }
  function chon1(id)
  {
 
      if(id!=it)
        {
            document.getElementById("menu_index"+id).style.color="#f7e308";
    }
  }
    function Click_true(id)
    {//alert(id)
    
        if(id!=it)
        {
              if(it!="0")
              {
                 document.getElementById("menu_index"+it).style.color="#ffffff";
              }
              it=id;
             
        }
       
    }
    
    var it2=0;
     function thoat2(id2)
  {
    if(id2!=it2)
    {
     document.getElementById("menu"+id2).style.color="#333333";
    }
  }
  function chon2(id2)
  {
 
      if(id2!=it2)
        {
        document.getElementById("menu"+id2).style.color="#00abcf";
    }
  }
    function Click_true2(id2)
    {
    
        if(id2!=it2)
        {
              if(it2!="0")
              {
                     document.getElementById("menu"+it2).style.color="#333333";
              }
              it2=id2;
             
        }
       
    }



