// JavaScript Document
// The following lines are for keeping the footer at the bottom of the page
function footerAtBottom() {
	var FooterTop = $(document).height() - $('#footer').height();    
	$('#footer').css({'position' : 'absolute','top': FooterTop, 'visibility' : 'visible' });
	
	//alert(FooterTop);
}

$(document).ready(function(){ 
	//$('#homeBanners').css('display', 'none')(); 
});

$(window).load(function(){ 
	$(function() {footerAtBottom()});
});

$(window).resize( function() {footerAtBottom()});

