// Vertical aligment with Jquery

$(document).ready(function(){
    var column_left = ( $('.panel').height() - $('.panel .panel_left_column').height() ) / 2;
    $('.panel .panel_left_column').css('margin-top', column_left);
});

$(document).ready(function(){
    var column_right_1 = ( $('.panel').height() - $('.panel .one').height() ) / 2;
    $('.panel .one').css('margin-top', column_right_1);
});

$(document).ready(function(){
    var column_right_2 = ( $('.panel').height() - $('.panel .two').height() ) / 2;
    $('.panel .two').css('margin-top', column_right_2);
});

$(document).ready(function(){
    var column_right_3 = ( $('.panel').height() - $('.panel .three').height() ) / 2;
    $('.panel .three').css('margin-top', column_right_3);
});

$(document).ready(function(){
    var column_right_4 = ( $('.panel').height() - $('.panel .four').height() ) / 2;
    $('.panel .four').css('margin-top', column_right_4);
});

$(document).ready(function(){
    var column_right_5 = ( $('.panel').height() - $('.panel .five').height() ) / 2;
    $('.panel .five').css('margin-top', column_right_5);
});

$(document).ready(function(){
    var column_right_6 = ( $('.panel').height() - $('.panel .six').height() ) / 2;
    $('.panel .six').css('margin-top', column_right_6);
});

$(document).ready(function(){
    var column_right_7 = ( $('.panel').height() - $('.panel .seven').height() ) / 2;
    $('.panel .seven').css('margin-top', column_right_7);
});


$(document).ready(function(){
    var me = ( $('body').height() - $('body .me').height() ) / 2;
    $('body .me').css('margin-top', me);
});



