function CreateMenu() {

var a = new Array; 
var b = new Array;

a[1]='Home';		
b[1]='Go to the home page.';

a[2]='Menu';
b[2]='Find delicious menu items we offer. Call for delivery today.';

a[3]='Coupons';
b[3]='Print out coupons for in store specials. ';

a[4]='Events';
b[4]='Find events that are happening in the store.';

a[5]='Location';
b[5]='Where we are.';

a[6]='Reviews';
b[6]='Read what our customers think about the fine food we have. Managed by a third party.';

a[7]='About';
b[7]='Where we started.';

var i;
var s;

document.write('<Table border=0 cellspacing=10 cellpadding=10 width=97%');
document.write(' style="background-color:#0029A0;color:black;filter:progid:DXImageTransform.Microsoft.gradient(enabled=\'true\',   startColorstr=#328903, endColorstr=#56EC05), progid:DXImageTransform.Microsoft.dropshadow(OffX=4, OffY=4,  Color=\'gray\', Positive=\'true\');">');

document.write('<tr >');
for(i=1;i<a.length;i++) {
	s = "<td id='" + a[i] + "'>";
	s = s + "<a class='MenuLink' href='";
	
	// special cases for links
	if(a[i]=='Home') {
	      s = s + "index.html'";
	} else {
	      s = s + a[i] + ".html'";
	}
	
	s = s +" onMouseOver=\"Status('" + b[i] + "');a('Show " + a[i] + " Page');return true;\" onMouseOut=\"b()\">";
	s = s + a[i];
	s = s + '</a>';
	s = s + "</td>";
	document.write(s);
}
document.write('</tr></table>');
document.writeln('');
document.writeln('<span align=center id=ItemDescription style=\"color:saddlebrown;\">Please click on the options above to change page.</span>');

}

function Status(sMessage) {
var obj;
             obj=document.getElementById('ItemDescription');
             obj.innerHTML=sMessage;
			 
}
