	$(document).ready( function() {
		
		var maxW = 1024;
		var maxH = 768;
		var half_maxW =  Math.round(maxW  / 2);
		$(".home-background").css({"width" : maxW + "px" , "height" : maxH + "px", "left" : "50%", "margin-left" : "-" + half_maxW + "px"});
		
		if ($(document).height() < $(window).height()){
			var footer_back_H = $(document).height() - $(".footer-background").height();
		} else {
			var footer_back_H = $(window).height() - $(".footer-background").height();
		}
		
		if ($(".home-background").height() > $(window).height()) {
			var footer_back_H = $(".home-background").height() - $(".footer-background").height();
		}
		
		$(".footer-background").css("top", footer_back_H + "px");
		$(".footer").css("top", footer_back_H + "px");
		$(".footer").css({"width" : maxW + "px" , "left" : "50%", "margin-left" : "-" + half_maxW + "px"});

	});		

