
    
  $(document).ready(function(){

    $("#menu > li").mouseout(function() {
      $("#menu li ul").css("display", "none");
    });

    $("#menu > li").mouseover(function() {
      $("ul:first", this).css("display", "block");
    });
    
    $("#mestre .contmaticnetwork").mouseover(function() {
      $("#mestre .contmaticnetwork ul").show();
    });
    
    $("#mestre .contmaticnetwork").mouseout(function() {
      $("#mestre .contmaticnetwork ul").hide();
    });
	
  });
  
 	function verifica()	{
  	if (document.enviarsenha.user.value =="" && document.enviarsenha.senha.value == "") {
  	  alert("Preencha todos os campos.");
  	  return false;
  	}
	  return true;
	}
	