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]='View the delicious resturant menu.';

a[3]='Coupons';
b[3]='Print out coupons for in store discounts. A gift to our loyal customers.';


a[4]='Catering';
b[4]='Let us bring food to your door. Learn how we can bring it all together.';

a[5]='Location';
b[5]='Get directions to the best BBQ place on route 66.';

a[6]='Photographs';
b[6]='See our place, customers and staff.';

a[7]='About';
b[7]='The history of our famous resturant.';

var i;
var s;

document.write('<Table border=0 cellspacing=10 cellpadding=10 width=97%');
document.write(' style="background-color:lightbrown;color:white;filter:progid:DXImageTransform.Microsoft.gradient(enabled=\'true\',   startColorstr=#61380B, endColorstr=#FE9A2E), progid:DXImageTransform.Microsoft.dropshadow(OffX=4, OffY=4,  Color=\'saddlebrown	\', 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] + "');\">";
	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>Please click on the options above to change page.</span>');

}

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

