var body_check = setInterval(function(){
	if (document.body) {
		clearTimeout(body_check);
		if(document.body.clientWidth > 1195) {document.body.className += ' extrawide';}
		else if(document.body.clientWidth > 995) {document.body.className += ' wide';}
	}
}, 0);

