function menu()
{
//Navigation Menu
var menu_list = new Array ("About us",
	"Club News",
	"Club Events",
	"Photos",
	"Interesting Stuff",
	"The Notice Board",
	"Community Events",
	"Contact Us",
	"Links");

//Web Site pages
var page_list = new Array ("index.html",
	"news.html",
	"events.html",
	"photos.html",
	"interesting.html",
	"notices.html",
	"community_events.html",
	"contact_us.html",
	"links.html");
	
var i=0;//counter

document.write('<ul class = "navigation">');

for (i = 0; i < page_list.length; i++)
	{		
	document.write('<li><a href="'+ page_list[i] + '">' + menu_list[i] + '</a></li>');
	}

document.write('</ul>');
}