$().ready(function(){

    // Ajustando alinhamento vertical do site
    var bodyHeight = $('body').height();
    var holderHeight = $('#wrapper').height() + $('#footer_left').height();

    var calcHeight = (bodyHeight - holderHeight) / 2;

    if(calcHeight > 0){
        $('#wrapper').css('padding-top', calcHeight);
        $('.bg').css('top', calcHeight);
    }
    else {
        $('#wrapper').css('margin-top', 0);
        $('.bg').css('top', 0);
    }

});
