$(document).ready(function(){


    //this function makes the height of an inner div without enough content match the min height for the layout
    var minHeight = $("#maincontent-holder").height();
    var browserInfo = navigator.appName;
    if (browserInfo == "Microsoft Internet Explorer") {
        $("#bodycontent").css({
            "min-height": "" + minHeight - 113 + "px"
        });
    }
    else {
        $("#bodycontent").css({
            "min-height": "" + minHeight - 113 + "px"
        });
    }

});
