
function resetear_menu(){
	 /*$('#menu1 > ul').hide('fast'); 
	 $('#menu2 > ul').hide('fast'); 
	 $('#menu3 > ul').hide('fast'); 
	 $('#menu4 > ul').hide('fast'); */
}

  $(document).ready(function(){
  $('#menu1').bind("mouseenter",function(){
	 
	 var myShadowId = $("#titulo_1").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='hidden';
	 resetear_menu();
     //$('#menu1 > ul').show('fast');  
    }).bind("mouseleave",function(){
	 var myShadowId = $("#titulo_1").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='visible';
	 resetear_menu();
    });

  $('#menu2').bind("mouseenter",function(){
	 var myShadowId = $("#titulo_2").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='hidden';									 
	 resetear_menu();										 
    // $('#menu2 > ul').show('fast');  
    }).bind("mouseleave",function(){
	 var myShadowId = $("#titulo_2").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='visible';		
	 resetear_menu();		
    });
	
  $('#menu3').bind("mouseenter",function(){
	 var myShadowId = $("#titulo_3").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='hidden';
										 
	 resetear_menu();										 
     //$('#menu3 > ul').show('fast');  
    }).bind("mouseleave",function(){
	 var myShadowId = $("#titulo_3").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='visible';
	 resetear_menu();		
    });
	
  $('#menu4').bind("mouseenter",function(){
	 var myShadowId = $("#titulo_4").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='hidden';
										 
	 resetear_menu();										 
     //$('#menu4 > ul').show('fast');  
    }).bind("mouseleave",function(){
	 var myShadowId = $("#titulo_4").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='visible';		
	 resetear_menu();		
    });
  
  
    $('#menu5').bind("mouseenter",function(){
	 var myShadowId = $("#titulo_5").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='hidden';
    }).bind("mouseleave",function(){
	 var myShadowId = $("#titulo_5").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='visible';		
    });
	
	
  $('#menu6').bind("mouseenter",function(){
	 var myShadowId = $("#titulo_6").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='hidden';
    }).bind("mouseleave",function(){
	 var myShadowId = $("#titulo_6").attr("shadowId");
	 capa=(document.getElementById(myShadowId))
	 capa.style.visibility='visible';		
    });	
				
  });

