$(document).ready(function(){
    if($.trim($('#content_banner').html())!=''){
        $('#bottom_banner').show();
        $('body').css('padding-bottom','65px');
    }
    
    $('#bottom_banner').hover(function(){
        $(this).height(130);
        $('#close_banner').show();
    },function(){
        $(this).height(65);
        $('#close_banner').hide();
    });
    $('#close_banner').click(function(){
        $('#bottom_banner').hide();
        $('body').css('padding-bottom','0');
    });
});
