// Javascript code for menu 

var pageSubject = new Array();
var pageURL 	= new Array();

pageSubject[0] = "(My) Forester (Home)";
pageURL[0] = "index.html";

pageSubject[1] = "Gallery";
pageURL[1] = "gallery/";

pageSubject[2] = "Modifications";
pageURL[2] = "mods.html";

pageSubject[3] = "Odometer Chronology";
pageURL[3] = "odometer.html";

pageSubject[4] = "Specifications";
pageURL[4] = "specs.html";

pageSubject[5] = "Tyre History";
pageURL[5] = "tyres.html";

function loadPage(selURL) {
	location.href = selURL.options[selURL.selectedIndex].value;
}
