$(document).ready(resizeWindow);
$(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
	var $j = jQuery; 
	var body_width = $j('body').width()
	if (body_width <= 1000)
	  {
	  		$j("div#total_entire_whole_site_container, div#footer_container").css({'background-position:':'358px 0px', 'width' : '1000px' });
	  }
	else
	  {
  			//alert("RESIZED-LARGE");
			$j("div#total_entire_whole_site_container, div#whole_site_container, div#footer_container").css({'background-position:':'center top', 'width' : '100%'});
		}
	  
	}	
