	function getmenu(){
		var sOut;
		if (document.all){
			oRequest = new ActiveXObject("Microsoft.XMLHTTP");
		}else{
			var oRequest = new XMLHttpRequest();
		}
		var sURL  = "/Menu.htm";
		oRequest.open("GET",sURL,false);
		oRequest.setRequestHeader("User-Agent",navigator.userAgent);
		oRequest.send(null)
		
		if (oRequest.status==200){
			sOut = oRequest.responseText;	
			
			if (document.all){
				sOut = sOut.replace(/<\/a>\n/g,'<!--[if IE 7]><!--></a><!--<![endif]-->\r\n<!--[if lte IE 6]><table><tr><td><![endif]-->\r\n');
				sOut = sOut.replace(/<\/ul>\n/g,'</ul>\r\n<!--[if lte IE 6]></td></tr></table></a><![endif]-->');
			}else{
				sOut = sOut.replace(/<\/a>\r\n/g,'<!--[if IE 7]><!--></a><!--<![endif]-->\r\n<!--[if lte IE 6]><table><tr><td><![endif]-->\r\n');
				sOut = sOut.replace(/<\/ul>\r\n/g,'</ul>\r\n<!--[if lte IE 6]></td></tr></table></a><![endif]-->');
			}
			}else{
			sOut = 'Menu missing!';
			
			sOut = sOut + '<ul id="pmenu" style="margin-left:0;">';
			sOut = sOut + '<li><a href="/">Home</a></li>';
			sOut = sOut + '<li><a href="About_us.htm">About us</a>';
			sOut = sOut + '<ul style="margin-left:15px;list-style:square;">';
			sOut = sOut + '<li><a href="Index.htm">How we do it</a></li>';
			sOut = sOut + '<li><a href="Index.htm">Where we do it</a></li>';
			sOut = sOut + '<li><a href="Index.htm">Why we do it</a></li>';
			sOut = sOut + '</ul>';
			sOut = sOut + '</li>';
			sOut = sOut + '<li><a href="Feldenkrais_Method.htm">Feldenkrais Method</a>';
			sOut = sOut + '<ul style="margin-left:15px;list-style:square;">';
			sOut = sOut + '<li><a href="Index.htm">Development</a></li>';
			sOut = sOut + '<li><a href="Index.htm">History</a></li>';
			sOut = sOut + '</ul>';
			sOut = sOut + '</li>';
			sOut = sOut + '<li><a href="Links.htm">Links</a>';
			sOut = sOut + '<ul style="margin-left:15px;list-style:square;">';
			sOut = sOut + '<li><a href="Index.htm">Therapies</a></li>';
			sOut = sOut + '<li><a href="Index.htm">Feldenkrais history</a></li>';
			sOut = sOut + '<li><a href="Index.htm">Worldwide</a></li>';
			sOut = sOut + '</ul>';
			sOut = sOut + '</li>';
			sOut = sOut + '<li><a href="Contact_us.htm">Contact us</a></li>';
			sOut = sOut + '</ul>';
		}
		document.write(sOut);
	}