(function ($) {
	$(function () {
		function checkWidth () {
			if ($(this).width() <= 1200) {
				$('html').attr('class', 'narrow');
			}
			else {$('html').attr('class', '');}
		}
		checkWidth();
		$(window).resize(checkWidth);
	});
})(jQuery);
