// ***************************************************************************** // ** 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 'hulpverleners-menu.htm' thisPage='hulpverleners-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='../plaatjes/'; // 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 = '› '; // base target - the frame that the links are targetting base = 'display_area'; // ***************************************************************************** // ** 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(''); // ***************************************************************************** // ** BUILD MENU DATA ** // ***************************************************************************** // Nieuws Menu if (page=='nieuw') { thisMenu = new Array(); thisMenu[0] = new subMenu('Nieuws','nieuws.htm'); thisMenu[1] = new subMenu('Nieuw op de site','nieuw.htm'); } // Algemeen Menu if (page=='algemeen') { thisMenu = new Array(); thisMenu[0] = new subMenu('Bibliotheek','bibliotheek.htm'); thisMenu[1] = new subMenu('Anoniem blijven','anoniem.htm'); thisMenu[2] = new subMenu('Hulpverleners','hulpverleners-home.htm'); thisMenu[3] = new subMenu('Discriminatie','lgbt.htm'); } // Begrippen Menu if (page=='begrippen') { thisMenu = new Array(); thisMenu[0] = new subMenu('Uitleg begrippen','begrippen.htm'); thisMenu[1] = new subMenu('Genderdysforie','begrippen.htm#genderdysforie'); thisMenu[2] = new subMenu('Man of vrouw','begrippen.htm#manofvrouw'); thisMenu[3] = new subMenu('Travestie','begrippen.htm#travestie'); thisMenu[4] = new subMenu('Transgenderisme','begrippen.htm#transgenderisme'); thisMenu[5] = new subMenu('Transseksualiteit','begrippen.htm#transseksualiteit'); thisMenu[6] = new subMenu('Wie/Wat ben ik?','begrippen.htm#wiewat'); thisMenu[7] = new subMenu('Afkortingen','afkortingen.htm'); } // Huisarts Menu if (page=='huisarts') { thisMenu = new Array(); thisMenu[0] = new subMenu('Symptomen','hulpverleners-huisarts.htm'); thisMenu[1] = new subMenu('Travestie','hulpverleners-tv-behandeling.htm'); thisMenu[2] = new subMenu('Transgenderisme','hulpverleners-tg-behandeling.htm'); thisMenu[3] = new subMenu('Transseksualiteit','hulpverleners-ts-behandeling.htm'); thisMenu[4] = new subMenu('Discriminatie','lgbt.htm'); thisMenu[5] = new subMenu('Mailinglist','mailinglist.htm'); } // Psychisch Menu if (page=='psychisch') { thisMenu = new Array(); thisMenu[0] = new subMenu('Travestie','oproep.htm'); thisMenu[1] = new subMenu('Transgender','oproep.htm'); thisMenu[2] = new subMenu('Transsekualiteit','oproep.htm'); thisMenu[3] = new subMenu('Discriminatie','lgbt.htm'); thisMenu[4] = new subMenu('Mailinglist','mailinglist.htm'); } // Juridisch Menu if (page=='juridisch') { thisMenu = new Array(); thisMenu[0] = new subMenu('Travestie','oproep.htm'); thisMenu[1] = new subMenu('Transgender','oproep.htm'); thisMenu[2] = new subMenu('Transsekualiteit','oproep.htm'); thisMenu[3] = new subMenu('Discriminatie','lgbt.htm'); thisMenu[4] = new subMenu('Mailinglist','mailinglist.htm'); } // Links Menu if (page=='links') { thisMenu = new Array(); thisMenu[0] = new subMenu('Links','hulpverleners-links.htm'); thisMenu[1] = new subMenu('Discriminatie','lgbt.htm'); } // Renee Menu if (page=='renee') { thisMenu = new Array(); thisMenu[0] = new subMenu('Wat bieden we u','rene-home.htm'); thisMenu[1] = new subMenu('De stichting','rene-rene.htm'); thisMenu[2] = new subMenu('De Gezichten','rene-gezicht.htm'); thisMenu[3] = new subMenu('Rene(e)Card®','rene-card.htm'); thisMenu[4] = new subMenu('Erdic Tabletten','rene-erdic.htm'); thisMenu[5] = new subMenu('Epilight ontharing','rene-epilight.htm'); thisMenu[6] = new subMenu('Donateur','rene-donateur.htm'); thisMenu[7] = new subMenu('Download info','rene-download.htm'); thisMenu[8] = new subMenu('Links','links.htm'); thisMenu[9] = new subMenu('Mail','mailto:info@renee3t.nl'); }