//---Screen Resolution Detector
var imageUrl_Reg = "Images/AX_2010_Background_2011.jpg";
var imageUrl_Larger = "Images/AX_2010_Background_2011.jpg";

function detectScreenRes(){
	if ((screen.width<1025)) {
		//alert(screen.width);
		$('body').css({'background-image' : 'url(' + imageUrl_Reg + ')', 'background-repeat' : 'repeat-x'});
	}else if ((screen.width>1024)) {
		//alert(screen.width);
		$('body').css({'background-image' : 'url(' + imageUrl_Larger + ')', 'background-repeat' : 'repeat-x'});
	}
}

