function imgDisplay(img,n) {
	document.getElementById('imgZoomThumb').src=img;
	document.getElementById('imgZoom').rel=img;
	as=document.getElementById('imgCounter').getElementsByTagName('a');
	for (i=0; i<as.length; i++) {
		if(i==n) {
			as[i].className='on';
		}
		else as[i].className='';
	}
}

function setWidth() {
	var screenWidth=screen.width;
	if(screenWidth>=1024) {
		document.getElementById('body').style.width='1000px';
	}
	else {
		document.getElementById('body').style.width='770px';
	}	
}