// JavaScript Document

function menu() {
	//home
	document.writeln("<li id=\"home\"><a href=\"default.htm\"><span class=\"ctr\">Home</span></a>");
	document.writeln("<ul>");
	document.writeln("<li><a href=\"default.htm\">The Hut Home</a></li>");
	document.writeln("<li><a href=\"HVhome.htm\">Hills Volunteering Home</a></li>");
	document.writeln("<li><a href=\"LPhome.htm\">Learning Pathways Home</a></li>");
	document.writeln("</ul></li>");

	//programmes
	document.writeln("<li id=\"prog\"><a href=\"programs.htm\"><span class=\"ctr\">Programmes</span></a>");
	document.writeln("<ul>");
	document.writeln("<li><a href=\"allprograms.htm\">All Programmes</a></li>");
	document.writeln("<li><a href=\"bookshed.htm\">Book Shed</a></li>");
	document.writeln("<li><a href=\"buses.htm\">Buses</a></li>");
	document.writeln("<li><a href=\"nils.htm\">Hills NILS</a></li>");
	document.writeln("<li><a href=\"moveit.htm\">MoveIt</a></li>");	
	document.writeln("<li><a href=\"timetable.htm\">Timetable</a></li>");	
	document.writeln("<li><a href=\"training.htm\">Training & Courses</a></li>");
	document.writeln("</ul></li>");
	//us
	document.writeln("<li id=\"us\"><a href=\"us.htm\"><span class=\"ctr\">Us</span></a>");
	document.writeln("<ul>");
	document.writeln("<li><a href=\"contacts.htm\">Contact Details</a></li>");
	document.writeln("<li><a href=\"board.htm\">Board</a></li>");
	document.writeln("<li><a href=\"staff.htm\">Staff</a></li>");
	document.writeln("<li><a href=\"photos.htm\">Photos of Volunteers</a></li>");
	document.writeln("</ul></li>");
	//current events
	document.writeln("<li id=\"events\"><a href=\"events.htm\"><span class=\"ctr\">Current Events</span></a>");
	document.writeln("<ul>");
	document.writeln("<li><a href=\"newsletter.htm\">Newsletter</a></li>");
	document.writeln("<li><a href=\"training.htm\">Workshops & Courses</a></li>");
	document.writeln("<li><a href=\"community.htm\">Community Events</a></li>");
	document.writeln("</ul></li>");
	//volunteering
	document.writeln("<li id=\"volunteer\"><a href=\"volunteer.htm\"><span class=\"ctr\">Volunteering</span></a>");
	document.writeln("<ul>");
	document.writeln("<li><a href=\"vol_events.htm\">Volunteer Events</a></li>");
	document.writeln("<li><a href=\"voltraining.htm\">Volunteer Training</a></li>");
	document.writeln("<li><a href=\"newsletter.htm\">Volunteer Update</a></li>");
	document.writeln("<li><a href=\"opertunity.htm\">Opportunities</a></li>");
	document.writeln("</ul></li>");
	//links
	document.writeln("<li id=\"link\"><a href=\"links.htm\"><span class=\"ctr\">Links</span></a></li>");
	return;

}
