function menu()
{
	document.writeln("<ul>");
	document.writeln("<li><a href='default.html' />Home</a></li> ");
	document.writeln("<li><a href='membership.html' />Membership</a></li>");
	document.writeln("<li><a href='login.html' />Members Only</a></li>  ");
	document.writeln("<li><a href='meetings.html' />Meetings</a></li>   ");
	document.writeln("<li><a href='photogallery.html' />Photo Gallery</a></li>   ");
	document.writeln("<li><a href='events.html' /> Events</a></li> ");
	document.writeln("<li><a href='charityProjects.html' />Charity Projects</a></li> ");
	document.writeln("<li><a href='aboutUs.html' />About Us</a></li> ");
	document.writeln("<li><a href='contactUs.html' />Contact Us </a></li> ");
	document.writeln("</ul>");
}
function footer()
{
document.writeln("<p> &copy; Copyright 2009 Macomb County Quilt Guild.</p>");

}

