// JavaScript Document
		var menuWidth = 760;
 function centerLayout()
 {

       var bodyWidth = document.body.offsetWidth;
	   var theOffset = ((bodyWidth - menuWidth)/2)-10;
       if(theOffset > 0)
	  	{
			//document.getElementById['Layer1'].style.left = theOffset;
			document.all['company'].style.left = theOffset;
			//document.all['divMenuabout us'].style.left = theOffset;
		}
}
