$(document).ready(function() {
	resize_document();
	$(window).resize(function(){
		resize_document();
	});
});

function resize_document(){
	width = $(window).width();
	if(width<=1024){
		$('body, #header .wrap, #footer .wrap').removeClass('rubberwidth');
		$('body, #header .wrap, #footer .wrap').removeClass('maxwidth');
		$('body, #header .wrap, #footer .wrap').addClass('minwidth');
		return;
	}else if(width<=1260){
		$('body, #header .wrap, #footer .wrap').removeClass('minwidth');
		$('body, #header .wrap, #footer .wrap').removeClass('maxwidth');
		$('body, #header .wrap, #footer .wrap').addClass('rubberwidth');
		return;
	}else if(width>1260){
		$('body, #header .wrap, #footer .wrap').removeClass('rubberwidth');
		$('body, #header .wrap, #footer .wrap').removeClass('maxwidth');
		$('body, #header .wrap, #footer .wrap').addClass('maxwidth');
		return;
	}else if(width>1024){
		$('body, #header .wrap, #footer .wrap').removeClass('minwidth');
		$('body, #header .wrap, #footer .wrap').removeClass('maxwidth');
		$('body, #header .wrap, #footer .wrap').addClass('rubberwidth');
		return;
	}	
}
