// Keep the footer at the bottom of the page

$j(window).load (function () {
						   
	if ($j('body').outerHeight(true) < $j(window).height()) {
		
		$j('div#footer').css({'margin-top': parseInt($j('div#footer').css('margin-top')) + $j(window).height() - $j('body').outerHeight(true) + 'px'});
		
	}
	
});