function meniuPrincipal() {     
        $(".meniuPrincipal > ul > li").bind("mouseover", function(e) {                                  
                        
                        if($('div', this).length) {
                                $(this).children("div").show();
                                $(this).addClass("onHover");
                        }       
        });     
        
        $(".meniuPrincipal > ul > li").bind("mouseout", function(e) {   
                if($('div', this).length) {
                        $(this).children("div").hide();
                        $(this).removeClass("onHover");
                }       
        });     
        
}
//ON READY
$(document).ready(


 function()  
 {  
     meniuPrincipal();
 }
);




