// JavaScript Document

function adjustDiv(){
	if(screen.width<=1024){
		//reset size of main div
		oMain = document.getElementById('main');
		oLeft = document.getElementById('left');
		oRight = document.getElementById('right');

		if(oMain) oMain.style.width='1002px';
		if(oLeft) oLeft.style.display = 'none';
		if(oRight) oRight.style.display = 'none';
	}
}

