		function placeLayers(){
			var width=document.body.offsetWidth;
			var table=780;
			var pos;
			pos=((width-table)/2)+112;
			if(width<=780)
			{
				pos=83;
			}
			
			for(i=0; i<allLayers.length; i++)
			{
				temp = document.all["sub" + allLayers[i]];
				temp.style.pixelLeft=pos-1;
			}					
		}

