// Last change July 14 2003
// Developed by ddmenu@inbox.ru


// constants

// x-coordinate of top left corner of dropdown menu 
var initX             = 15; 

// y-coordinate of top left corner of dropdown menu 
var initY             = 420; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#c7b69e'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#c7b693'; 

// the color of dropdown menu border
var borderColor = '#c7b69e'; 

// the width of menu border
var borderSize  = '0'; 

// 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, 
95, // 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 (
'Book Picks', 'http://mysite.verizon.net/timnangiefischer/books.html',
'Poetry','http://mysite.verizon.net/timnangiefischer/poetry.html'
));

menuContent [1] = new Array ( 
-1, 
-1,
95, // 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 (
'Pictures', 'http://mysite.verizon.net/timnangiefischer/pictures.html', 
'Fan Art', 'http://mysite.verizon.net/timnangiefischer/fanart.html',
'Videos', 'http://mysite.verizon.net/timnangiefischer/Videos.html',
'Scrapbooks', 'http://mysite.verizon.net/timnangiefischer/Scrapbooks.html',
'Photo Creations', 'http://mysite.verizon.net/timnangiefischer/PC.html'
));

menuContent [2] = new Array ( 
-1, 
1,
95, // 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 (
'Guestbook', 'http://www.guestbookdepot.com/php/guestbook.php?book_id=681022&guid=205dad45-7238-422c-a771-e66df85f311f'
));

menuContent [3] = new Array ( 
-1, 
1,
95, // 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 (
'Links', 'http://mysite.verizon.net/timnangiefischer/links.html', 
'Recipes', 'http://mysite.verizon.net/timnangiefischer/recipies.html'
));

menuContent [4] = new Array ( 
-1, 
1,
95, // 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 (
'Warhammer 40k', 'http://mysite.verizon.net/timnangiefischer/40k.html',
'D&D','http://mysite.verizon.net/timnangiefischer/dd.html',
'D&D Minies','http://mysite.verizon.net/timnangiefischer/ddm.html',
'Guild Wars','http://mysite.verizon.net/timnangiefischer/GW.html'

));