﻿//$(function() {

//    $(window).load(function() {
//        $('#outerFooter').css({ 'top': (($(document).height()) - 333) + 'px' });        
//    });
//});

//this function matches the position of the outer footer with the top of the inner footer
$(function() {

    $(window).load(function() {
        var pos = $("#footer").position().top;
        $('#outerFooter').css({ 'top': (pos) + 2 + 'px' });
    });
});
