    //Center the wrapper
    
    jQuery(document).ready(centerit);
    
    jQuery(window).resize(centerit);
    
    
    function centerit() {
        var margin_top = jQuery(document).height() / 2 - 120;
        jQuery('#wrapper').css('margin-top', margin_top + 'px');
    }

