//If the User resizes the window, adjust the #site_container width
$(document).ready(resizeWindow);
$(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
	var body_width = $('body').width()
	if (body_width <= 1000)
	  {
			//alert("RESIZED-SMALL");
			//background positon =  background-image with:  - 1000 / 2 
	  		$("body").css({'background-position:':'300px 0px' });
	  		$("div#entire_site_container").css({'width' : '1000px' });
	  		$("div#footer_container").css({'background-position:':'300px 0px', 'width' : '1000px' });
	  }
	else
	  {
  			//alert("RESIZED-LARGE");
			$("body").css({'background-position:':'center top'});
			$("div#entire_site_container").css({'width' : '100%'});
			$("div#footer_container").css({'background-position:':'center top', 'width' : '100%'});
		}

	}