// JavaScript Document
var screenWidth=0;
function checkResolution()
{
	if(screenWidth!=window.screen.width)
	window.location.href=window.location.href;	
}
function getResolution()
{
	if(window.screen.width>800)
	{
		screenWidth=window.screen.width;		
		// for header section 
		document.getElementById("container").style.width="1003px";
		document.getElementById("container").style.margin="0 auto";		
		document.getElementById("leftbg").style.width="114"+"px";
//		document.getElementById("leftbg").style.backgroundImage="url('http://localhost:2211/MUR-NANDORFS/images/header_left_img.jpg')";
        document.getElementById("leftbg").style.backgroundImage="url('http://fundraiseandrecycleclothesnow.com/images/header_left_img.jpg')";
		document.getElementById("rightbg").style.width="113"+"px";
		document.getElementById("rightbg").style.backgroundImage="url('http://fundraiseandrecycleclothesnow.com/images/header_right_img.jpg')";
		//for footer section
		document.getElementById("container2").style.width="1002px";
		document.getElementById("container2").style.margin="0 auto";
		document.getElementById("leftbg2").style.width="113"+"px";
		document.getElementById("leftbg2").style.backgroundImage="url('http://fundraiseandrecycleclothesnow.com/images/botm_left_img.jpg')";
		document.getElementById("rightbg2").style.width="113"+"px";
		document.getElementById("rightbg2").style.backgroundImage="url('http://fundraiseandrecycleclothesnow.com/images/botm_right_img.jpg')";
		// for navigation section
		document.getElementById("navigation").style.width="1003px";
		document.getElementById("navigation").style.margin="0 auto";
		document.getElementById("leftbg3").style.width="114"+"px";
		document.getElementById("leftbg3").style.backgroundImage="url('http://fundraiseandrecycleclothesnow.com/images/nav_left_img.jpg')";
		document.getElementById("rightbg3").style.width="113"+"px";
		document.getElementById("rightbg3").style.backgroundImage="url('http://fundraiseandrecycleclothesnow.com/images/nav_right_img.jpg')";
		
	}
	else
	{
		screenWidth=window.screen.width;
		// for header section 
		document.getElementById("container").style.width=window.parseInt(screenWidth) - 24 + "px";
		document.getElementById("container").style.margin="auto";
		document.getElementById("main_container").style.width="auto";
		document.getElementById("leftbg").style.display="none";
		document.getElementById("rightbg").style.display="none";
		//for footer section
		document.getElementById("container2").style.width=window.parseInt(screenWidth) - 24 + "px";
		document.getElementById("container2").style.margin="auto"
		document.getElementById("leftbg2").style.display="none";
		document.getElementById("rightbg2").style.display="none";
		// for navigation section
		document.getElementById("navigation").style.width=window.parseInt(screenWidth) - 24 + "px";
		document.getElementById("navigation").style.margin="auto"
		document.getElementById("leftbg3").style.display="none";
		document.getElementById("rightbg3").style.display="none";
	}		
}
//setInterval("checkResolution()",1000);