﻿$(window).load(function () {

    $(window).resize(footerSet).scroll(footerSet);


        function footerSet() {
        $(document).ready(function () {
            if ($(window).height() > ($('#pageWrapper').outerHeight(true) + $('#footerWrapper').outerHeight(true))) {
                $('#footerConstent').css({ 'position': 'fixed', 'bottom': '0px' });
                $('body').height($(window).height());
            } else {
                $('#footerConstent').css({ 'position': 'static' });
                $('body').height($(document).height());
            };
        });
    };

    });
    
$(function () {
    if ($(window).height() > ($('#pageWrapper').outerHeight(true) + $('#footerWrapper').outerHeight(true))) {
        $('#footerConstent').css({ 'position': 'fixed', 'bottom': '0px' });
        $('body').height($(window).height());
    } else {
        $('#footerConstent').css({ 'position': 'static' });
        $('body').height($(document).height());
    };
    });
    
