// ***************************************************************************** // ** 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 'travestie-menu.htm' thisPage='travestie-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'); } // 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'); } // FAQ Menu if (page=='faq') { thisMenu = new Array(); thisMenu[0] = new subMenu('Vragen Overzicht','travestie-faq.htm'); thisMenu[1] = new subMenu('Ben ik alleen?','travestie-faq.htm#hoevaak'); thisMenu[2] = new subMenu('Wat zijn de oorzaken','travestie-faq.htm#waarom'); thisMenu[3] = new subMenu('Homoseksualiteit','travestie-faq.htm#homo'); thisMenu[4] = new subMenu('Is het te genezen?','travestie-faq.htm#genezen'); thisMenu[5] = new subMenu('Vrouw worden?','travestie-faq.htm#vrouw'); thisMenu[6] = new subMenu('Hoe vaak omkleden?','travestie-faq.htm#omkleden'); thisMenu[7] = new subMenu('Is het strafbaar?','travestie-faq.htm#strafbaar'); thisMenu[8] = new subMenu('Bij vrouwen','travestie-vrouwen.htm'); thisMenu[9] = new subMenu('Meer vragen...?','travestie-faq.htm#vragen'); } // Medisch Menu if (page=='medisch') { thisMenu = new Array(); thisMenu[0] = new subMenu('Medisch algemeen','travestie-medisch.htm'); thisMenu[1] = new subMenu('(Huis)Arts','travestie-medisch.htm#huisarts'); thisMenu[2] = new subMenu('Oorzaak','transseksueel-oorzaak.htm'); thisMenu[3] = new subMenu('Behandelen','travestie-medisch.htm#behandelen'); thisMenu[4] = new subMenu('Medicijnen','travestie-medisch.htm#medicijnen') thisMenu[5] = new subMenu('RIAGG/GGZ','riagg.htm'); } // Partner/Omgeving Menu if (page=='partner') { thisMenu = new Array(); thisMenu[0] = new subMenu('Omgeving algemeen','travestie-omgeving.htm'); thisMenu[1] = new subMenu('Info voor partner1','travestie-partner.htm'); thisMenu[2] = new subMenu('Info voor partner2','travestie-partner-vervolg.htm'); thisMenu[3] = new subMenu('Kinderen','travestie-kinderen.htm'); } // Sociaal Menu if (page=='sociaal') { thisMenu = new Array(); thisMenu[0] = new subMenu('T&T avonden','tent-contactgroep.htm'); thisMenu[1] = new subMenu('Uitgaan','uitgaan.htm'); thisMenu[2] = new subMenu('Mailinglist','mailinglist.htm'); thisMenu[3] = new subMenu('Travestie Links','travestie-links.htm'); } // Hulpverleners Menu if (page=='hulpverleners') { thisMenu = new Array(); thisMenu[0] = new subMenu('Overzicht','travestie-hulpverleners.htm'); thisMenu[1] = new subMenu('Voor hulpverleners','travestie-hulpverleners.htm'); thisMenu[2] = new subMenu('Discriminatie','lgbt.htm'); thisMenu[3] = new subMenu('Travestie Links','travestie-links.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'); }