<!--
// *****************************************************************************
// **      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='';

// the filename of the page the menu appears in eg 'menu.html'
thisPage='menujst.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='image/';

// do you want to use images for the category bullets?
lev1img='yes';					// insert yes or no

// give image names and dimensions
lev1OpName='blok10.gif';			// open image name
lev1OpHeight='13';				// image height
lev1OpWidth='20';				// image width

lev1ClosName='blok10.gif';		// closed image name
lev1ClosHeight='13';			// image height
lev1ClosWidth='20';				// 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='blok9.gif';			// image name
lev2Height='9';				// image height
lev2Width='10';					// 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="' + base + '">');

// *****************************************************************************
// **                             BUILD MENU DATA                             **
// *****************************************************************************
if (page=='Thoraxcenter') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Clustermanagement ','bestuur.html');
thisMenu[1] = new subMenu('Medical staf','staf.html');
thisMenu[2] = new subMenu('Professors','hoogleraar.html');
thisMenu[3] = new subMenu('Key figures','cijfers.html');
}

if (page=='Patientcare') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Outpatient Department','pat/poli.html');
thisMenu[1] = new subMenu('Medium Care Cardiology','pat/mcc.html');
thisMenu[2] = new subMenu('High/Medium Care Thor.surgery','pat/mct.html');
thisMenu[3] = new subMenu('Intensive Care','pat/ic.html');
thisMenu[4] = new subMenu('Operating Theaters','pat/ok.html');
thisMenu[5] = new subMenu('Angio rooms','pat/int.html');
//thisMenu[6] = new subMenu('Bewegwijzering','pat/weg.html');
//thisMenu[7] = new subMenu('Bezoektijden','http://www.erasmusmc.nl/content/patienten/bezoek.htm#bezoekbd');
//thisMenu[8] = new subMenu('Wachttijden','http://www.erasmusmc.nl/content/wachtlijsten/wachtlijstenhome2.htm#cardiologiewachtlijsten');
}

if (page=='Work') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Career opportunities','werk/loopbaan.html');
thisMenu[1] = new subMenu('Vacancies','werk/vac.html');
//thisMenu[2] = new subMenu('Medewerkers in beeld','werk/medewerkers.html');
}

if (page=='Education') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Basic medical training','ondw/arts2007.html');
thisMenu[1] = new subMenu('Master of Science','ondw/msc.html');
thisMenu[2] = new subMenu('Education for specialists','ondw/spec.html');
thisMenu[3] = new subMenu('Education PhD students','ondw/promo.html');
thisMenu[4] = new subMenu('Specialist training','ondw/vakopl.html');

}

if (page=='Research') {
thisMenu = new Array();
thisMenu[0] = new subMenu('Experimental Cardiology','ondz/exp.html');
thisMenu[1] = new subMenu('Biomedical engineering','ondz/bio.html');
thisMenu[2] = new subMenu('Clinical Epidemiology','ondz/kli.html');
thisMenu[3] = new subMenu('Research topics','ondz/thema.html');
thisMenu[4] = new subMenu('Awards','awards/awards.html');
thisMenu[5] = new subMenu('Thesis defense','ondz/promo.html');
thisMenu[6] = new subMenu('Publications','ondz/publicatie.html');
}

if (page=='doc') {
thisMenu = new Array();
//thisMenu[0] = new subMenu('Thoraxcentre journal','doc/tcj.html');
thisMenu[0] = new subMenu('Annual report','doc/jaar2003.html');

}
//-->

