// x-coordinate of top left corner of dropdown menu 
var initX             = 390; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 65; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#778899'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#B0C4DE'; 

// the color of dropdown menu border
var borderColor = 'black'; 

// the width of menu border
var borderSize  = '1'; 

// height of menu itesm
var itemHeight  = 20;

// overlapping between 
var xOverlap    = 5
var yOverlap    = 10;

// end of constants


if ((screen.width>1024) && (screen.height>768))
{

menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
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 (
'Item 11', 'http://www.11.net',
'Item 12', 'http://www.12.net',
'Item 13', 'http://www.13.net'
));

menuContent [1] = new Array ( 
-20, 
1,
115, // the width of current menu list 
504, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
61, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Özgeçmiş', '?pagebl=kisisel',
'Fotoğraflar', '?pagebl=resim1'
));

menuContent [2] = new Array ( 
-20, 
1,
110, // the width of current menu list 
721, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
61, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Yüksek Lisans', '?pagebl=yuksek', 
'Doktora', '?pagebl=doktora'
));


menuContent [3] = new Array ( 
-20, 
1,
200, // the width of current menu list 
573, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
61, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Yargı Mekanları Tasarım İlkeleri', '?pagebl=yargitasarim', 
'Türküler ve Mekanlar', '?pagebl=turkulermekanlar',
'Türkülerde Mekanların Yansıttiğı Yalnızlık ve Sürgün Duygusu', '?pagebl=turkulerdemekanlar',
'Yargı Mekanlarının Tarihsel Gelişimi', '?pagebl=yargimekanlari',
'Modern Mahkeme Salonları Oturum Düzenleri', '?pagebl=modernmahkeme',
'Mekanların Türküsü', '?pagebl=tekne'
));


}
else
{
menuContent     = new Array ();
menuContent [0] = new Array ( 
-1, 
-1, 
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 (
'Item 11', 'http://www.11.net',
'Item 12', 'http://www.12.net',
'Item 13', 'http://www.13.net'
));

menuContent [1] = new Array ( 
-20, 
1,
115, // the width of current menu list 
359, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
61, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Özgeçmiş', '?pagebl=kisisel',
'Fotoğraflar', '?pagebl=resim1'
));

menuContent [2] = new Array ( 
-20, 
1,
110, // the width of current menu list 
576, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
61, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Yüksek Lisans', '?pagebl=yuksek', 
'Doktora', '?pagebl=doktora'
));


menuContent [3] = new Array ( 
-20, 
1,
200, // the width of current menu list 
428, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
61, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Yargı Mekanları Tasarım İlkeleri', '?pagebl=yargitasarim', 
'Türküler ve Mekanlar', '?pagebl=turkulermekanlar',
'Türkülerde Mekanların Yansıttiğı Yalnızlık ve Sürgün Duygusu', '?pagebl=turkulerdemekanlar',
'Yargı Mekanlarının Tarihsel Gelişimi', '?pagebl=yargimekanlari',
'Modern Mahkeme Salonları Oturum Düzenleri', '?pagebl=modernmahkeme',
'Mekanların Türküsü', '?pagebl=tekne'
));


}
