<!--
// *****************************************************************************
// **      JavaScript Tree Menu Copyright Net Explorers Ltd 2001              **
// *****************************************************************************

// *****************************************************************************
// **                                SETTINGS                                 **
// *****************************************************************************

// 'linka' use this if part of the URL is the same in ALL the links
// In this example all the files are in a subfolder called 'pages'
linka='menu/';

// the filename of the page the menu appears in eg 'menu.html'
thisPage='menu.htm';

// Do you want to use images for the category bullets?
// If so then specify the path to your images folder from the menu page
imgPath='menu/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='open.gif';			// open image name
lev1OpHeight='18';				// image height
lev1OpWidth='18';				// image width

lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='18';			// image height
lev1ClosWidth='18';				// image width

// do you want to use images for the sub-category bullets?
lev2img='yes';		// insert yes or no

// give image names and dimensions
lev2Name='bullet2.gif';			// image name
lev2Height='18';				// image height
lev2Width='18';					// image width

// do you want to use a text character for the sub-category bullets?
lev2Char='no';		// insert yes or no

// set bullet character for level 2 bullets
bullet = '&#155; ';

// base target - the frame that the links are targetting
base = 'main';

// *****************************************************************************
// **                             END OF SETTINGS                             **
// *****************************************************************************

// pulls 'page' variable out of URL - do not alter
	var x = 0
	page = location.search.substr(1).split("?")
	for (x=0;x<=page.length;x++) {
		eval(page)
		}
page = escape(page);
page = page.slice(7);

// do not alter this bit
function subMenu(name,linkb) {
 this.name = name;
 this.linkb = linkb;
}
document.write('<BASE target="_parent">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// 10themoffatts
if (page=='10themoffatts') {
thisMenu = new Array();
thisMenu[0] = new subMenu('<IMG src="menu/11news.gif" alt="" border=0>','../news_frame.htm');
thisMenu[1] = new subMenu('<IMG src="menu/12berichte.gif" alt="" border=0>','../berichte_frame.htm');
thisMenu[2] = new subMenu('<IMG src="menu/14biographie.gif" alt="" border=0>','../biographie_frame.htm');
thisMenu[3] = new subMenu('<IMG src="menu/15audiographie.gif" alt="" border=0>','../audiographie_frame.htm');
}

// 20multimedia
if (page=='20multimedia') {
thisMenu = new Array();
thisMenu[0] = new subMenu('<IMG src="menu/21mp3_video.gif" alt="" border=0>','../download_frame.htm');
thisMenu[1] = new subMenu('<IMG src="menu/22bilder.gif" alt="" border=0>','../pics_frame.htm');
}

// 30links
if (page=='30links') {
thisMenu = new Array();
thisMenu[0] = new subMenu('<IMG src="menu/31mofflinks.gif" alt="" border=0>','../links-moffatts_frame.htm');
thisMenu[1] = new subMenu('<IMG src="menu/33linkme.gif" alt="" border=0>','../links-linkme_frame.htm');
}

// 40games
if (page=='40games') {
thisMenu = new Array();
thisMenu[0] = new subMenu('<IMG src="menu/42hangman.gif" alt="" border=0>','../hangman_frame.htm');
thisMenu[1] = new subMenu('<IMG src="menu/43puzzle.gif" alt="" border=0>','../puzzle_frame.htm');
}

// 50sonstiges
if (page=='50sonstiges') {
thisMenu = new Array();
thisMenu[0] = new subMenu('<IMG src="menu/52help.gif" alt="" border=0>','../help_frame.htm');
thisMenu[1] = new subMenu('<IMG src="menu/54votingergebnis.gif" alt="" border=0>','../votingergebnisse_frame.htm');
}

//-->
