$(document).ready(function(){
    $('.top_menu ul li').hover(
        function() {
            $(this).addClass("act");
            $(this).find('ul').stop(true, true);
            $(this).find('ul').show('fast');
        },
        function() {
            $(this).removeClass("act");
            $(this).find('ul').hide('fast');
        }
    );
});
