
function loadMenu()
{
		var xmlHttp = null;
		if (window.XMLHttpRequest) {
		  // If IE7, Mozilla, Safari, and so on: Use native object.
		  xmlHttp = new XMLHttpRequest();
		}
		else
		{
		  if (window.ActiveXObject) {
		     // ...otherwise, use the ActiveX control for IE5.x and IE6.
		     xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
		  }
		}
		
		
		var allText = "";
		xmlHttp.open("GET", "menu/menu.htm", true);
		xmlHttp.onreadystatechange = function() {
		  if (xmlHttp.readyState === 4) {  // Makes sure the document is ready to parse.
		    if (xmlHttp.status === 200) {  // Makes sure it's found the file.
		      allText = xmlHttp.responseText; 
		      document.getElementById("menu").innerHTML = (allText);
		      //alert(document.getElementsByClassName("")
		    }
		  }
		}
		xmlHttp.send(null);
}
