
// *****************************************************************************
// **                                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.html'
thisPage='navigation.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='images/';

// do you want to use images for the category bullets?
lev1img='no';					// 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='no';		// 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 = 'Inhalt';

// *****************************************************************************
// **                             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,onclick) {
 this.name = name;
 this.linkb = linkb;
 this.onclick = onclick;
}
document.write('<BASE target="' + base + '">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************

// Kalender
if (page=='kal') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;- Kalender 2007','kalender2007/index.html','Kalender');
thisMenu[1] = new subMenu('&nbsp;- Kalender 2006','kalender2006/index.html','Kalender');
thisMenu[2] = new subMenu('&nbsp;- Kalender 2005','kalender2005/index.html','Kalender');
thisMenu[3] = new subMenu('&nbsp;- Kalender 2004','kalender2004/index.html','Kalender');
thisMenu[4] = new subMenu('&nbsp;- Kalender 2003','kalender2003/index.html','Kalender');
thisMenu[5] = new subMenu('&nbsp;- Kalender 2002','kalender2002/index.html','Kalender');
thisMenu[6] = new subMenu('&nbsp;- Kalender 2001','kalender2001/index.html','Kalender');
thisMenu[7] = new subMenu('&nbsp;- Kalender 2000','kalender2000/index.html','Kalender');
thisMenu[8] = new subMenu('&nbsp;- Kalender 1999','kalender1999/index.html','Kalender');
}

// Die Techniken
if (page=='tec') {
thisMenu = new Array();
thisMenu[0] = new subMenu('&nbsp;- Cera Tementina','cera/index.html','Techniken');
thisMenu[1] = new subMenu('&nbsp;- Aquarelle','aquarelle/index.html','Techniken');
thisMenu[2] = new subMenu('&nbsp;- Ölgemälde','oelgemaelde/index.html','Techniken');
}

