
	// world medical footbal federation - 2008
	// Brendan Jones Jan 2008
	// ----------------------------------------------------
	var menuStrings = "Home~index.htm|Intro~intro.htm|Venue~venue.htm|Accom.~accommodation.htm|Rules~rules.htm|Register~registration.htm|Contact~Contact.htm|Innsbruck~about.htm|Austria~austria.htm|Program~program.htm|Results~results.htm";
	function createMenu(currentPage)
	{
		var menuArray=menuStrings.split('|');
		var ret='<p>';
		for (i=0; i < menuArray.length; i++)
		{
			var title=menuArray[i].split('~')[0];
			var url=menuArray[i].split('~')[1];
			if ( ((url.indexOf(currentPage)!=-1) && (currentPage != '')) || ((currentPage=='')&&(title=='Home')) ) ret = ret + '<a href="' + url + '" class="active">' + title + '</a>';
			else ret = ret + '<a href="'+url+'">' + title + '</a>';
		}
		ret=ret+'</p>';
		return ret;
	}
	
	function init()
	{
		var urlp = String(document.location).split('/');
		document.getElementById('navigation').innerHTML = createMenu(urlp[urlp.length-1]);
	}