// JavaScript Document
// Script to create navigation menu

var stLabel = new Array ("Home",	"About", "Open Events", "Racing Diary", "Results", "Sailfish Club", "Training", "Membership", "Social", "Gallery", "Forum", "For Sail", "Contact");
var stLink = new Array ("index.html", "about.htm", "openevents.htm", "clubracing.htm", "results.htm", "sailfish.htm", "training.htm", "membership.htm", "social.htm", "gallery.htm", "http://www.burwain.co.uk/cgi-bin/yabb2/yabb.pl", "forsale.htm", "contact.htm");
var stClass = "MenuBtn";
var iMnuCnt = 13;
var stMenu = "";

function drawMenu (currentPage) {
var iLoop;

	// Table
	stMenu = ' <table border="0" cellpadding="0" cellspacing="3">';
	for (iLoop = 0; iLoop < iMnuCnt; iLoop++) {
		stMenu += '<tr>';
		if (iLoop == currentPage) {
			stMenu += '<td valign="bottom" class="' + stClass + '">' + stLabel[iLoop] + '</td>';
		} else {
			stMenu += '<td><a href="' + stLink[iLoop] + '" class="' + stClass + '">' + stLabel[iLoop] + '</a></td>';
		}
		stMenu += '</tr>';
	}
	stMenu += '</table>';
	return stMenu;
}