$(document).ready(function(){		
    
    // $('#top_menu_list li').mouseenter(function(){
    $('#top_menu_list li').mouseover(function(){
        if (!$(this).hasClass('currently')) $(this).addClass('hoverly');
    });
    
    // $('#top_menu_list li').mouseleave(function(){
    $('#top_menu_list li').mouseout(function(){
        $('#top_menu_list').children().removeClass('hoverly');
    });    
    
}); // END $(document).ready();