// JavaScript Document

$(document).ready(function(){
	resizeWindow();
	
	//If the User resizes the window, adjust the #container height
	$(window).bind("resize", resizeWindow);
	
	function resizeWindow(e) {
		var newWindowHeight = $(window).height();
		$("#background").css("min-height", newWindowHeight);
	}
});

