// write me if you have questions: web.master@male.net

// constants
var initX       = 560; // x-coordinate of top left corner of dropdown menu 
var initY       = 143 ; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#E5E4E4'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'white'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
120, // the width of current menu list 
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Link 11', 'hizmetlerimiz.asp',
'Link 12', 'http://www.2.net',
'Link 13', 'http://www.3.net'
));

menuContent [1] = new Array ( 
-1, 
-1,
120,
-1, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Kaporta', 'kaporta.asp',
'Boya', 'boya.asp',
'Mekanik-Motor', 'mekanik.asp',
'Cam-Kilit-Döşeme', 'camkilit.asp',
'Sigorta Aracılık', 'sigorta.asp',
'Rent a Car', 'rentacar.asp',
'Bosch Car Service', 'ikinciel.asp'
));



