/*
function adjustMyFrameHeight()
{
    var the_height = document.getElementById('spotlight_iframe').contentWindow.document.body.scrollHeight;
    
    //change the height of the iframe
    document.getElementById('spotlight_iframe').height = the_height - 150 ;
}
*/

$(window).load(function(){
    $('.main_content').css('overflow-y', 'auto');
    $('#content').css('min-height', '10%');
    $('#spotlight_iframe').css('height', $(window).height() + 340);
});
