$(document).ready(function(){
	var currheight;
	function content_resize(){	
		if (currheight != document.documentElement.clientHeight) {
			if ($(window).height() <= $("#wrap").height()) {
				$("#bg").css("height", $("#wrap").height());
				$("#flashBG").css("height", $("#wrap").height());
				
			}
			else {
				$("#bg").css("height", $(window).height());
				//$("#wrap").css("height", $(window).height());
				$("#flashBG").css("height", $(window).height());
			}
		}
		currheight = document.documentElement.clientHeight;
	}
	$( window ).wresize( content_resize ); 
	content_resize();
});