function cortaLaterais() {
	var screenWidth,mainWidth;

	if (navigator.appName == 'Microsoft Internet Explorer') {
		screenWidth = document.body.offsetWidth;
		document.getElementById('menuFlash').style.top = 116;
		
	} else {
		screenWidth = window.innerWidth;
	}
	
	var actQuery = window.location.search;
	actQuery = actQuery.substring(1, actQuery.length);
	 
	var itens = new Array();
	for(var i = 0; i < actQuery.split("&").length; i++) {
		itens[i] = actQuery.split("&")[i];
	}

	for (var j in itens) {
		if( itens[j] == 'section=store' ){
			document.getElementById('cart').style.left = (screenWidth <= 800) ? '598px' : '724px';
			document.getElementById('productCats').style.left = (screenWidth <= 800) ? '614px' : '740px';
		}
	}

	document.getElementById('outerLeft').style.display = (screenWidth <= 800) ? 'none' : 'block';	
	document.getElementById('outerRight').style.display = (screenWidth <= 800) ? 'none' : 'block';
	document.getElementById('main').style.width = (screenWidth <= 800) ? '768px' : '1005px';
	document.getElementById('headerSelect').style.width = (screenWidth <= 800) ? '300px' : '400px';
	document.getElementById('header').style.width = (screenWidth <= 800) ? '752px' : '100%';
}

window.onresize = cortaLaterais;
window.onload = cortaLaterais;