// Background Postion Fix

$(document).ready(resizeWindow);
$(window).bind("resize", resizeWindow);
	function resizeWindow( e ) {
		var body_width = $('body').width()
		var body_height = $('body').height()
		var window_height = $(window).height()
		if (body_width <= 1000)
		  {
				$("div#total_entire_whole_site_container, div#whole_site_container, div#footer_container").css({'background-position:':'500px 0px', 'width' : '1000px' });
		  }
		else
		  {
				$("div#total_entire_whole_site_container, div#whole_site_container, div#footer_container").css({'background-position:':'center top', 'width' : '100%'});
			}
	
		/*
			if (loc == "home") {
			if (window_height <= 849)
				{
					$("div#container").css('height', window_height);
				}
		
			if (window_height <= 750)
				{
					$j("div#container").css({'height':'750px' });
				}
		}
		*/

	}	 
