// Last change July 14 2004
// Developed by tony@thaihoster.com


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 100; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 119; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#ff0000'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#ffaa00'; 

// the color of dropdown menu border
var borderColor = ''; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 12;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
0, // 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 (
));

menuContent [1] = new Array ( 
-1, 
-0,
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 (
'Designed Restaurant', 'ko_lanta_restaurant.htm', '',
'Creative Dishes', 'creative_restaurant.htm', '',
'Our Chef', 'our_chef.htm', ''
));

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 (
'Friendly Bar', 'ko_lanta_bar.htm', '',
'Special Drinks', 'special_drink.htm', ''
));

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 (
'Designed Bungalow', 'ko_lanta_bungalow.htm', '' ,
'Price','bungalow_price.htm','',
'Reservation','reservation.php',''
));

menuContent [4] = 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 (
'About Ko Lanta', 'ko_lanta.htm', '', 
'Activities', 'ko_lanta_activities.htm', '', 
'Getting Ko Lanta','ko_lanta_getting_here.htm',''
));

menuContent [5] = 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 (
'Ed & Joyce', 'edd_joice.htm', '', 
'Where we are', 'where_red_snapper.htm', '', 
'Contact Us','contact_us.htm',''
));