function Menubar()
	{
	HTML =	"<ul><a href='index.html'>Home</a>" +
		"&nbsp;&nbsp;&nbsp;&nbsp;<a href='Schedule.html'>Schedule</a>" +
		"&nbsp;&nbsp;&nbsp;&nbsp;<a href='Services.html'>Services</a>" +
		"&nbsp;&nbsp;&nbsp;&nbsp;<a href='History.html'>History</a>" +
		"&nbsp;&nbsp;&nbsp;&nbsp;<a href='Contact.html'>Contact</a>" +
		"&nbsp;&nbsp;&nbsp;&nbsp;<a href='Links.html'>Links</a>" +
		"</ul>";
	document.write(HTML);
	}
	

	
