jQuery(document).ready(function($) { 
    function WPOTTResize() {
        // Set spacer to push main content down, then set height of div
        $('#wp-ott-spacer').css('height', $(window).height()+'px');
        $('#wp-ott').css('height', $(window).height()+'px');
        $('#wp-ott-spacer').css('display', 'block');
        $('#wp-ott').css('display', 'block');    
    }
    
    if ($('#wp-ott').length > 0) $('body').prepend('<div id="wp-ott-spacer" style="height: '+$(window).height()+'px"></div>');
    WPOTTResize();
    $(window).resize(function() { WPOTTResize(); }); // Resize content area on window resize
});
