$(document).ready(function() {
    //fitPageHeight();
    $(".youtube").colorbox({iframe:true, innerWidth:425, innerHeight:344});
    $(".imgbox").colorbox();
});

$(window).resize(function(){
    //fitPageHeight();
});

function fitPageHeight()
{
    var fixedSpaces  = parseInt($('#pageWrapper').css('margin-top')) + parseInt($('#pageWrapper').css('margin-bottom')) + parseInt($('#pageWrapper').css('padding-top')) + parseInt($('#pageWrapper').css('padding-bottom'));
    var footerHeight = $('#footerContainer').height() + parseInt($('#footerContainer').css('margin-top')) + parseInt($('#footerContainer').css('margin-bottom'));
    
    if( ($('#pageWrapper').height() + footerHeight + fixedSpaces) < $(window).height()) {
        $('#pageWrapper').css('height', $(window).height() - fixedSpaces - footerHeight);
    }
    
    $('#mainContentWrapper').css('height', ($('#pageWrapper').height() - 60) + 'px');
}
