// JavaScript Document

function resizeWindow(e) {
	var flashHeight = $(window).height() - $("#header").height() - $("#containerNav").height() - ($("#footer").height()+45);
	$("#container").height(flashHeight);
}

$(function(){
	
	var flashHeight = $(window).height() - $("#header").height() - $("#containerNav").height() - ($("#footer").height()+45);
	$("#container").height(flashHeight);

	//If the User resizes the window, adjust the #container height
	$(window).bind("resize", resizeWindow);
});
