// x-coordinate of top left corner of dropdown menu var initX = 100; // y-coordinate of top left corner of dropdown menu var initY = 280; // the background color of dropdown menu (set empty '' for transparent) var backColor = '#FFFFFF'; // the background color of selected menu items, set empty '' for transparent var activeBackColor = 'b9e66b'; // the color of dropdown menu border var borderColor = '#00000'; // the width of menu border var borderSize = '1'; // height of menu item var itemHeight = 20; // overlapping between var xOverlap = 5; var yOverlap = 10; // end of constants menuContent = new Array (); menuContent [0] = new Array ( -1, -1, 120, // the width of current menu list -1, // x coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent y-coordinate new Array ( 'Home', 'index.php', '','De Actie', 'de_actie.php', '','Ik Doe mee', 'ik_doe_mee.php','' ,'FAQ', 'faq.php', '')); menuContent [1] = new Array ( -1, -1, 120, // the width of current menu list -1, // x coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent y-coordinate new Array ( 'Redactie', 'columns.php?action=showcat&catid=4', '','Heart2Heart', 'heart2heart_home.php?action=showcat&catid=3', '','Rein', 'rein.php?action=showcat&catid=1', '')); menuContent [2] = new Array ( -1, -1, 120, // the width of current menu list -1, // x coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent y-coordinate new Array ( 'Boek', 'http://www.mijnwebwinkel.nl/winkel/WLW/' , '' , 'Brochure', 'http://www.mijnwebwinkel.nl/winkel/WLW/', '', 'Poster', 'http://www.mijnwebwinkel.nl/winkel/WLW/', '' , 'Card', 'http://www.mijnwebwinkel.nl/winkel/WLW/', '')); menuContent [3] = new Array ( -1, -1, 120, // the width of current menu list -1, // x coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent y-coordinate new Array ( 'Britney', '#', '' , 'Lente', '#', '', 'Winter', '#', '')); menuContent [4] = new Array ( -1, -1, 150, // the width of current menu list -1, // x coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent y-coordinate new Array ( 'Wat staat waar?', 'wat_staat_waar.php', '' , 'Contact', 'contact.php', '')); menuContent [5] = new Array ( -1, -1, 150, // the width of current menu list -1, // x coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent x-coordinate -1, // y coordinate (absolute) of left cornner of this menu list, -1 if the coordinate is defined from parent y-coordinate new Array ( 'Kort en Krachtig', 'kort_en_krachtig.php', '', 'Video: De Kamer', 'kamer.php', ''));