//******************************************************************************
//
// The JavaScript file specific to this website
//
// Copyright (c) 2009 SoftKube - http://www.softkube.com
//
//******************************************************************************
/**
 * Stretch the main-wrap div to fill the whole view-port on document load.
 */
$(document).ready(function() {
    var window_height = $(window).height();
    var header_height = $("#header").height();
    var main_height = $("#main").height();
    var footer_height = $("#footer").height();
    var all_height = header_height + main_height + footer_height;
    if (all_height < window_height) {
        var new_main_height = window_height - header_height - footer_height;
        $("#main-wrap").height(new_main_height);
        $("#main").height(new_main_height);
    }
});
