//*******************************************************************
// Southern Classics Menu JavaScript Class Def. & Variable 
//														Declaration.
// (c) 2000-2005 Kappa Solutions Ltd.
//*******************************************************************

// Constructor. *****************************************************
function Menu() {
	this._options = [
		{href: 'index.htm', text: "Home"},
		{href: 'events.asp',  text: "Events"},
		{href: 'news.asp',  text: "News"},
		{href: 'forums/',  text: "Forums"},
		{href: 'about.htm',  text: "About Us"}
	];
}

// Draw. ***********************************************************
Menu.prototype.getHTML = function () {
	var html= this.getOption(this._options[0]);
	for (var i = 1; i < this._options.length; i++) {
		html += this.getOption(this._options[i], " | ");
	}
	return "<p class='menu'>" + html + "</p>";
}
// Get Option. ****************************************************
Menu.prototype.getOption = function (option, spacer) {
	if (!spacer) var spacer = ""
	var html = spacer;
	if ((new String(document.URL)).search(".uk/" + option.href)>0) {
		html += "<font color='#FFCC00'>" + option.text + "</font>";
	} else {
		html += "<a class='menu' href='/" + option.href + "' >" + option.text + "</a>";
	}
	return  html; 
}
// Draw menu. *****************************************************

document.write((new Menu()).getHTML());

//*******************************************************************