// Last change July 14 2003
// Developed by ddmenu@inbox.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 100; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 25; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = ''; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#000000'; 

// the color of dropdown menu border
var borderColor = ''; 

// the width of menu border
var borderSize  = '0'; 

// height of menu itesm
var itemHeight  = 17;

// overlapping between 
var xOverlap    = 5;
var yOverlap    = 10;

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
110, // the width of current menu list 
276, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
60, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Biography', 'biography.asp',
'Discography', 'discography.asp',
'Multimedia', 'multimedia.asp',
'Buy Music', 'buy_music.asp',
'Merchandise', 'merchandise.asp'
));

menuContent [1] = new Array ( 
-1, 
-1,
105, // the width of current menu list 
403, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
60, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Latest News', 'latest_news.asp', 
'Live Shows', 'live_shows.asp'
));

menuContent [2] = new Array ( 
-1, 
1,
80, // the width of current menu list 
525, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
60, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Photos', 'photos.asp',
'Stories', 'stories.asp',
'Articles', 'articles.asp',
'Tour Diary', 'tour_diary.asp',
'Album Diary', 'album_diary.asp'
));

menuContent [3] = new Array ( 
-1, 
1,
82, // the width of current menu list 
607, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
60, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Mailing List', 'mailing_list.asp',
'Links', 'links.asp',
'Contact', 'contact.asp'
));


