// Initialise menus.
// Set names and positions, etc...
// "O" = X relitive to origin , "C" = X relitive to Center [x pos,y pos,layer-level, width, hight]

// Main menus
	var menuServices=new Menu("menuServices","C",-296,134,2,190,150);
	
// These limits stop the menus going astray when the window is physically too small - MP (28/10/03)
var leftLimit = 70;

function updateLayers()	{
	menuServices.moveIT();
	setTimeout('updateLayers();',1000);  // this updates the layer position every X milli-sec.  is called by the resize command in the body tag
}
	
function hideall()	{	
	menuServices.hide();
}