<!--
// *****************************************************************************
// **      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='sidor/';

// the filename of the page the menu appears in eg 'menu.html'
thisPage='menu.html';

// 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='bilder/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='cross40_red.gif';			// open image name
lev1OpHeight='10';				// image height
lev1OpWidth='40';				// image width

lev1ClosName='cross.gif';		// closed image name
lev1ClosHeight='10';			// image height
lev1ClosWidth='14';				// 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='bullet4.gif';			// image name
lev2Height='6';				// image height
lev2Width='8';					// 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 = 'right';

// *****************************************************************************
// **                             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="' + base + '">');
if (page=='projects') {
thisMenu = new Array();
thisMenu[0] = new subMenu('  My face book','../../2010/me/index.html');
thisMenu[1] = new subMenu('  See you. see me','../../bildbank/portrait/index.html');
thisMenu[2] = new subMenu('  Virtual world. real world','../../2000/index.html');
thisMenu[3] = new subMenu('  One for all','../../oneforall/index.html');
}
if (page=='shows') {
thisMenu = new Array();
thisMenu[0] = new subMenu('  Change','../../2009/openart/index_show.html');;
thisMenu[1] = new subMenu('  Slice of the real','../../2008/lipf/index.html');
thisMenu[2] = new subMenu('  Tellus 2000','../../2008/lipf08_documentation/lipf08_intro_tellus.html');
thisMenu[3] = new subMenu('  Love is in the details','../../2009/onlove/index.html');
}
if (page=='series') {
thisMenu = new Array();
thisMenu[0] = new subMenu('  Night time','../../a_portfolio/night_time/index.html');
thisMenu[1] = new subMenu('  Europa','../../2008/esm/index.html');
thisMenu[2] = new subMenu('  World','../../frames/index.html');
thisMenu[3] = new subMenu('  Magazine','../../a_issuu/index.html');
}

if (page=='info') {
thisMenu = new Array();
thisMenu[0] = new subMenu('  About','../../private/about_me.html');
thisMenu[1] = new subMenu('  Biography','../../private/biography.html');
thisMenu[2] = new subMenu('  Contact','../../private/network.html');
thisMenu[3] = new subMenu('  Archives','../../private/links.html');
}


