/* 	window.onload = setScreenClass;		*/
	window.onresize = setScreenClass;

	var $j = jQuery.noConflict();
	function setScreenClass() {
	
		var fmt = document.documentElement.clientWidth;
		var cls = (fmt<=925)?'screen_low':(fmt>925)?'screen_high':'screen_high';
		//document.body.className=cls;
		$j('body').removeClass("screen_low");
		$j('body').removeClass("screen_high");
		$j('body').removeClass("screen_high_bg-one");
		$j('body').removeClass("screen_high_bg-two");
		$j('body').removeClass("screen_high_bg-three");
		$j('body').removeClass("screen_high_bg-four");
		$j('body').removeClass("screen_high_bg-five");
		$j('body').addClass(cls);
		
	};

/*	$j(document).ready(function(){
		setScreenClass();
	});*/
	
	//fix for IE6 background image flicker 
	
	try {
	  document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}

