function moveOnResize()
{

	resizeCorrection = (SlideOutMenu.Registry ['menu1'].browserWidth - document.body.clientWidth)/2;
	
	//alert(resizeCorrection);

		var el = document.getElementById('menu1Container');  
		el.style.left = (SlideOutMenu.Registry ['menu1'].left - resizeCorrection) + "px"; //change the left attribute of the container
		var e2 = document.getElementById('menu2Container');  
		e2.style.left = (SlideOutMenu.Registry ['menu2'].left - resizeCorrection) + "px"; //change the left attribute of the container
		var e3 = document.getElementById('menu3Container');  
		e3.style.left = (SlideOutMenu.Registry ['menu3'].left - resizeCorrection) + "px"; //change the left attribute of the container
		var e4 = document.getElementById('menu4Container');  
		e4.style.left = (SlideOutMenu.Registry ['menu4'].left - resizeCorrection) + "px"; //change the left attribute of the container
		var e5 = document.getElementById('menu5Container');  
		e5.style.left = (SlideOutMenu.Registry ['menu5'].left - resizeCorrection) + "px"; //change the left attribute of the container
		var e6 = document.getElementById('menu6Container');  
		e6.style.left = (SlideOutMenu.Registry ['menu6'].left - resizeCorrection) + "px"; //change the left attribute of the container
		
}

