$(function() {
    function footerResize()
    {
        var winHeight = $(window).height();
        $("div.footer").css({top: winHeight - 18});
    }
    
    footerResize();
});
