$(document).ready(function (){    
    $(".menu_nav ul li").hover(
        function () {
            $(this).children().next().slideDown("fast");
        }
    );     
    $(".menu_nav ul li").mouseleave(
        function () {
            $(this).children().next().slideUp("fast");
        }
    );    
    
    $(".contenido").fadeTo("slow", 0.8);

    $(".contenido").hover(
        function () {
            $(this).fadeTo("slow", 1);
        }
        ,
        function () {
            $(this).fadeTo("slow", 0.8);
        }        
    );    

    
    
  //  $("#menu_nav ul").fadeTo("slow", 0.8);
    
});
