function load(){
			window.status = "Page is loaded";			
			if (document.body.offsetWidth < 992) {
				document.getElementById("wrapper").style.width = '640px';
			}
			else 
				if (document.body.offsetWidth < 1152) {
					document.getElementById("wrapper").style.width = '960px';
				}
				else 
					if (document.body.offsetWidth < 1312) {
						document.getElementById("wrapper").style.width = '1120px';
					}
					else {
						document.getElementById("wrapper").style.width = '1280px';
					};
};

try{Typekit.load();}catch(e){}