function showMenuSection(str){
			var xmlhttp;
			var txt,x,xx,i,url;
			if (window.XMLHttpRequest) {
				// code for IE7+, Firefox, Chrome, Opera, Safari
 				xmlhttp=new XMLHttpRequest();
			}
			else {
				// code for IE6, IE5
  				xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  			}
			xmlhttp.onreadystatechange=function() {
  				if (xmlhttp.readyState==4 && xmlhttp.status==200) {
				txt="<p style=\"font-size:11px\">Prices and specials subject to change without notice.</p>\n";
  				txt=txt+"<table class=\"menutable\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\" >\n";
  				txt=txt+"<tr>\n<td colspan=\"5\">\n";
			    txt=txt+"<h1>"+str+"</h1>\n";
			    txt=txt+"</td>\n</tr>\n";
			    x=xmlhttp.responseXML.documentElement.getElementsByTagName("menuSection");
    			for (i=0;i<x.length;i++) {
	    			txt = txt + "<tr>\n";
	    			xx=x[i].getElementsByTagName("otherH");
	       			{
	        			try {
	          				txt=txt + "<td colspan=\"5\">\n<h4 class=\"menutable2\">" + xx[0].firstChild.nodeValue + "</h4>\n";
	          			}
	        			catch (er) {
	          				txt=txt + "<td style=\"max-width:80%\">\n";
	          	   		}
	        		}
	        		xx=x[i].getElementsByTagName("otherE");
	       			{
	        			try {
	          				txt=txt + "<p class=\"menutable3\">" + xx[0].firstChild.nodeValue + "</p>\n";
	          			}
	        			catch (er) {
	          				txt=txt + "";
	          	   		}
	        		}
	      			xx=x[i].getElementsByTagName("header");
	       			{
	        			try {
	          				txt=txt + "<h4>" + xx[0].firstChild.nodeValue + "</h4>\n";
	          			}
	        			catch (er) {
	          				txt=txt + "";
	          	   		}
	        		}
	      			xx=x[i].getElementsByTagName("descrip");
	        		{
	        			try {
	          				txt=txt + "<p>" + xx[0].firstChild.nodeValue + "</p>\n";
	          			}
	        			catch (er) {
	          				txt=txt + "";
	          			}
	        		}
	        		xx=x[i].getElementsByTagName("extra");
	        		{
	        			try {
	          				txt=txt + "<p>" + xx[0].firstChild.nodeValue + "</p>\n</td>\n";
	          			}
	        			catch (er) {
	          				txt=txt + "</td>";
	          			}
	        		}
	      			xx=x[i].getElementsByTagName("price");
	        		{
	        			
	        			try {
	          				txt=txt + "<td style=\"min-width:20%\">\n<h5>" + xx[0].firstChild.nodeValue + "</h5>\n</td>\n</td>\n";
	          			}
	        			catch (er) {
	          				txt=txt + "";
	          			}
	        		}
	        		txt=txt+"</tr>\n";
	      		}
	      		txt=txt+"</table>\n";
    		document.getElementById('menusect').innerHTML=txt;
    	}
  	}
  	url="./xml/menu/"+str.toLowerCase()+".xml";
	xmlhttp.open("GET",url,true);
	xmlhttp.send();
	document.getElementById('menusect').style.top=0;
}
function showSpecialSection(str){
			var xmlhttp;
			var txt,x,xx,i,url;
			if (window.XMLHttpRequest) {
				// code for IE7+, Firefox, Chrome, Opera, Safari
 				xmlhttp=new XMLHttpRequest();
			}
			else {
				// code for IE6, IE5
  				xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  			}
			xmlhttp.onreadystatechange=function() {
  				if (xmlhttp.readyState==4 && xmlhttp.status==200) {
			    txt="<p style=\"font-size:11px\">Prices and specials subject to change without notice.\n<br/>\nSpecials may not be valid on UMD game days.</p>\n";
			    txt=txt+"<h1>"+str+"</h1>";
			    x=xmlhttp.responseXML.documentElement.getElementsByTagName("section");
			txt = txt + "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"550\" style=\"margin:0px auto;\">";
    			for (i=0;i<x.length;i++) {
    			
      			xx=x[i].getElementsByTagName("descrip");
       			{
					txt = txt + "<tr>";
        			try {
          				txt=txt + "<td ><h4 style=\"text-align:left; font-size:18px\">" + xx[0].firstChild.nodeValue + "</h4></td>";
          			}
        			catch (er) {
          				txt=txt + "";
          	   		}
        		}
      			xx=x[i].getElementsByTagName("price");
        		{
        			try {
          				txt=txt + "<td width=\"250\" height=\"50\"><h5 style=\"text-align:right; font-size:18px\">" + xx[0].firstChild.nodeValue + "</h5></td></tr>";
          			}
        			catch (er) {
          				txt=txt + "</tr>";
          			}
        		}
        		xx=x[i].getElementsByTagName("extra");
        		{
        			try {
          				txt=txt + "<tr><td width=\"500\" height=\"50\"><h4 style=\"text-align:left; font-size:14px; color:#ed9236;\">" + xx[0].firstChild.nodeValue + "</h4></td></tr>";
          			}
        			catch (er) {
          				txt=txt + "";
          			}
        		}
      		}
      		txt=txt + "</table>";
    		document.getElementById('menusect').innerHTML=txt;
    	}
  	}
  	url="./xml/specials/"+str.toLowerCase()+".xml";
	xmlhttp.open("GET",url,true);
	xmlhttp.send();
	document.getElementById('menusect').style.top=0;
}
