// *****************************************************************************
// **                                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='';

// the filename of the page the menu appears in eg 'menu.php'
thisPage='locations.php';

// 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='images/';

// 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='10';				// image height
lev1OpWidth='10';				// image width

lev1ClosName='closed.gif';		// closed image name
lev1ClosHeight='10';			// image height
lev1ClosWidth='10';				// 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='bullet.gif';			// image name
lev2Height='10';				// image height
lev2Width='16';					// 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>');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// Bad Laasphe Menu
if (page=='laasphe') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Connection','locations_connection.php');
}

// Berlin Menu
if (page=='berlin') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Asgard','locations_asgard.php');
thisMenu[1] = new subMenu('Rock- und Wikingerbar','locations_wikibar.php');
}

// Bochum Menu
if (page=='bochum') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Matrix','locations_matrix.php');
}

// Darmstadt Menu
if (page=='darmstadt') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Bruchtal','locations_bruchtal.php');
thisMenu[1] = new subMenu('Goldene Krone','locations_krone.php');
thisMenu[2] = new subMenu('Steinbruch Theater','locations_steinbruch.php');
}

// Dieburg Menu
if (page=='dieburg') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Dieburger Biergarten','locations_dieburgerbiergarten.php');
}

// Erlangen Menu
if (page=='erlangen') {
thisMenu = new Array();
thisMenu[0] = new subMenu('New Force','locations_newforce.php');
}

// Frankfurt Menu
if (page=='frankfurt') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Hard Rock 1','locations_hardrock1.php');
thisMenu[1] = new subMenu('Speak Easy','locations_speakeasy.php');
thisMenu[2] = new subMenu('Spritzehaus','locations_spritzehaus.php');
thisMenu[3] = new subMenu('The Cave','locations_cave.php');
}

// Giessen Menu
if (page=='giessen') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Hard Rock','locations_hardrock.php');
thisMenu[1] = new subMenu('Scarabee','locations_scarabee.php');
}

// Hamburg Menu
if (page=='hamburg') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Der Clochard','locations_clochard.php');
thisMenu[1] = new subMenu('Grünspan','locations_gruenspan.php');
thisMenu[2] = new subMenu('Headbangers Ballroom','locations_headbangersballroom.php');
thisMenu[3] = new subMenu('Lehmitz','locations_lehmitz.php');
thisMenu[4] = new subMenu('Rock Cafe','locations_rockcafe.php');
thisMenu[5] = new subMenu('Scandia Bar','locations_scandiabar.php');
thisMenu[6] = new subMenu('Steppenwolf','locations_steppenwolf.php');
}

// Karlsruhe Menu
if (page=='karlsruhe') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Unverschämt','locations_unverschaemt.php');
}

// Limburg Menu
if (page=='limburg') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Second Home','locations_secondhome.php');
}

// London Menu
if (page=='london') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Barfly Camden NW1','locations_barfly.php');
thisMenu[1] = new subMenu('Caernarvon Castle','locations_caernarvoncastle.php');
thisMenu[2] = new subMenu('The Dublin Castle','locations_thedublincastle.php');
thisMenu[3] = new subMenu('The Worlds End, Underworld NW1','locations_theworldsend.php');
}

// Ludwigsburg Menu
if (page=='ludwigsburg') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Rockfabrik','locations_rockfabrik.php');
}

// Oslo Menu
if (page=='oslo') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Garage Oslo','locations_garage.php');
thisMenu[1] = new subMenu('Rockefeller-John Dee','locations_rockefeller.php');
thisMenu[2] = new subMenu('Rock Cafe Elm Street','locations_rockcafeoslo.php');
}

// Weiher Menu
if (page=='weiher') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Music-Hall','locations_musichall.php');
}