
/*-------------Edit this to change your menu-------------*/

var links = new Array
("Home",
"1<sup>st</sup> Year Oxford Physics",
"2<sup>nd</sup> Year Oxford Physics",
"3<sup>rd</sup> Year Oxford Physics",
"4<sup>th</sup> Year Oxford Physics",
"Short History of the UK",
"The Mpemba Effect",
"1927 Solvay Conference",
"Lecture Timetable Script",
"Online Virus Scanners",
"Indiana Jones Games");

var links_url = new Array ("index.shtml", "1.shtml", "2.shtml", "3.shtml", "4.shtml", "g.shtml", "mpemba.shtml", "solvay.shtml", "lecturecal.shtml", "utilities.shtml", "indy.shtml");

var links_cat = new Array ("1", "2", "2", "2", "2", "3", "3", "3", "4", "4", "4");

/*---------------Do Not Edit Below Here On Pain of DEATH------------------------*/

var loc=String(this.location);
var main=String(this.location);
loc=loc.split("/");
loc=loc[loc.length-1];

document.write("<ul>");

for(var i=0; i<links.length; i++)
{
	if(loc==links_url[i] || (links_url[i]=="index.shtml" && main=="http://www.thecolourblue.co.uk/"))
	{
		document.write("<li><a class=\"highlight"+links_cat[i]+"\" href=\""+links_url[i]+"\">"+links[i]+"</a></li> ");
	}
	else
	{
		document.write("<li><a href=\""+links_url[i]+"\">"+links[i]+"</a></li> ");
	}
}

document.write("</ul>");