﻿/// <reference path="jquery-vsdoc.js" />
//*************************************************************************************
// File     : refresh_functions.js
// Requires : jquery.js (version 1.3.2+)
// Author   : Kyle Weems (ksw)
// Origin   : mindfly.com
// Created  : May 07, 2010
// Modified : May 07, 2010
//*************************************************************************************

$(document).ready(function() {
    fitColumn();
});

function fitColumn() {
    if ($(window).width() >= 1390) {
        if ($('#footer').height() < $('#mainContent').outerHeight(true)) {
            $('#footer').css('height', $('#mainContent').outerHeight(true) + 'px');
        }
    }
}
