// JavaScript Document

	
function checkWidth() {
	if( document.body.clientWidth < 920) {
		document.getElementById('hss_intro_graphic').className="narrow";
	}else{
		document.getElementById('hss_intro_graphic').className="wide";
	}
}
checkWidth();
window.onresize = checkWidth;
