
    
    
    function changeImage($id, $change_to)
    {
       document.getElementById($id).src=$change_to; 
    }
    
    function changeImageSubMenu($id, $change_to)
    {
       document.getElementById($id).src=$change_to; 
    }
    function changeColor ($id,$value)
    {
      //alert($id);
      document.getElementById($id).style.color = $value;
    }
    
     

