	function writeText(o) {
		document.write (eval('o["'+MH.preflang+'"]'))
	}

	function writeMenu(o, sty, useExplicit) {
		
		var tmpLinks = "";
		if (useExplicit) {
			tmpLinks = "http://www.mhulme.net/beta/"
		}


		document.write ("<span class='"+sty+"'>");
		document.write (o.title+"<br />");
		document.write ("</span>");

		document.write ("<ul>");
		for (var i=0; i<o.names.length; i++) {
			if (typeof(o.names[i])=="object") {
				document.write ('<li><span class="submenulink">')
				writeMenu(o.names[i], sty )
				document.write ('</span><br /></li><br>')
			} else {
				document.write ('<li><a class="menulink" href="'+ tmpLinks +o.values[i]+'">'+o.names[i]+'</a><br /></li>')
			}
		}
		document.write ("</ul>");
	}

	function siteMap() {
		var here = location.href.split("/")[location.href.split("/").length-1]
		
		document.write ( "<b>Sitemap:</b> " + here + "");

	}
