StretchContent = 
{
    init :function()
    {
        var contentHeight = $('#contentContainer').height() + 148;
        var subNav =  49 + 25;
        $('#main').height(contentHeight + subNav + 55);
        $('#content').height(contentHeight + subNav);
        $('#opacity').height(contentHeight + subNav);
    }
}

$(document).ready(StretchContent.init);
