$(function() {
			if (document.body.clientWidth > 1200) {
				$('.wrapper').width(1200);

			} else if (document.documentElement.clientWidth
					|| document.body.clientWidth < 995) {
				$('.wrapper').width(995);
			} else {
				$('.wrapper').width('100%');
			}
		});
$(window).resize(function() {
	if (document.body.clientWidth > 1200) {
		$('.wrapper').width(1200);

	} else if (document.documentElement.clientWidth
			|| document.body.clientWidth < 995) {
		$('.wrapper').width(995);
	} else {
		$('.wrapper').width('100%');
	}
});