// Variable fixed width
$(function(){
	$(window).bind('resize', function() {

		if (window.innerWidth) {
			theWidth = window.innerWidth
		} else if (document.documentElement && document.documentElement.clientWidth) {
			theWidth = document.documentElement.clientWidth
		} else if (document.body) {
			theWidth = document.body.clientWidth
		}
		
		if (theWidth != 0) {
			if (theWidth <= 886) {
				$('body').addClass('widthAltSmall');
			} else {
				$('body').removeClass('widthAltSmall');
			}
		}
	});
});