// declare position constants

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

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

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

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

// the color of dropdown menu border
var borderColor = '#6F5C20';

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

// height of menu items
var itemHeight  = 20;

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

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
100, // the width of current menu list 
112, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Links', 'links.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
100, // the width of current menu list 
212, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Bios', 'bios.html', 
'Photo Gallery', '/dalbum/',
'Kansas 2005', 'kansas.html'

));

menuContent [2] = new Array ( 
-1, 
1,
150, // the width of current menu list 
312, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Discography', 'discography.html', 
'Download Music', 'downloads.html',
'Taping/Trading Policy', 'taping_policy.html',
'Television', 'television.html',
'Video', 'video.html'
));

menuContent [3] = new Array ( 
-1, 
1,
100, // the width of current menu list 
412, // 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 (
'Press Kit', 'presskit.html', 
'Promo Shots', 'promoshots.html', 
'Quotes', 'quotes.html',
'Reviews', 'reviews.html'
));
menuContent [4] = new Array ( 
-1, 
1,
100, // the width of current menu list 
512, // 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 (
'Internet', 'internet.html',
'Radio', 'radio.html',
'Television', 'television.html'
));

menuContent [5] = new Array ( 
-1, 
1,
115, // the width of current menu list 
612, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'2011 Calendar', 'calendar_2011.html',
'2010 Calendar', 'calendar_2010.html',
'2009 Calendar', 'calendar_2009.html',
'2008 Calendar', 'calendar_2008.html', 
'2007 Calendar', 'calendar_2007.html', 
'2006 Calendar', 'calendar_2006.html', 
'2005 Calendar', 'calendar_2005.html', 
'2004 Calendar', 'calendar_2004.html'
));

menuContent [6] = new Array ( 
-1, 
1,
100, // the width of current menu list 
712, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));

menuContent [7] = new Array ( 
-1, 
1,
120, // the width of current menu list 
812, // x coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent x-coordinate
-1, // y coordinate (absolute) of left corrner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
));




