jQuery(function($){
    // Footer
    $('#more_langs').hide();
    
    $('#show_more_langs').click(function(){
        $('#more_langs').toggle();
    });
    
    if ($.browser.msie && $.browser.version <= 6){
        $('.menu').hover(function(){
            $(this).find('.list').show();
        }, function(){
            $(this).find('.list').hide();
        });
    }
});


