﻿
var setFooterOld = setFooter;

window.setFooter = function(){

    if ($.browser.opera) {
        var windowHeight = document.documentElement["clientHeight"];
    } else {
        var windowHeight = $(window).height();
    }

    var windowWidth = getWindowWidth();

    var homeFlash = $("#homeFlash");


    if (windowWidth < 990) {
        $("body").css("width", "990px");
    } else {
        $("body").css("width", "auto");
    }

    if (windowHeight < 600) {
        homeFlash.height("570px");
    }
    else {
        homeFlash.height((windowHeight - 82) + "px");
    }

    var footer = $("#footer");
    footer.css("padding", "0px");

    setFooterOld();
};


