$(document).ready(function(){
    $("ul.topnav li a").hover(
        function() { 
            $(this).parent().find("ul.subnav").fadeIn('fast').show();
            $(this).parent().find("a").addClass("ativo"); 
            $(this).parent().hover(
                function() { 
                    // none
                },
                function(){
                    $(this).parent().find("ul.subnav").fadeOut('fast');
                    $(this).parent().find("a").removeClass("ativo"); //On hover over, add class "subhover"
                }
            );
        },
        function(){
            // none
        }
    );
});