function resizeMain() {
	if($(window).width() < 1024){
		$('#mainWrapper').css({
			'width':'1024px',
			'background-position':'left top'
		});

		$('#mainWrapper1').css({
			'width':'1024px',
		});

		$('#mainWrapper2').css({
			'width':'1024px',
		});

		$('#mainWrapper3').css({
			'width':'1024px',
			'margin-left':'0'
		});
		
		$('#footerWrapper').css({
			'width':'1024px',
		});
		
		$('#footer').css({
			'margin-left':'0'
		});
	}
}