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