// 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             = 195; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor         = '#006633'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor   = '#006633'; 

// the color of dropdown menu border
var borderColor = 'white'; 

// 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


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
175, // the width of current menu list 
98, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
128, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Principals', 'principals.htm',
'Advisory Board', 'Advisory.htm',
'About Us', 'about_us.htm'
));

menuContent [1] = new Array ( 
-1, 
-1,
175, // the width of current menu list 
215, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
128, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'IPO', 'ipo.htm', 
'Private Placements', 'private.htm',
'Mergers', 'mergers.htm' 
));

menuContent [2] = new Array ( 
-1, 
-1,
175, // the width of current menu list 
363, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
128, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Business Strategy', 'business.htm', 
'Corporate Finance', 'corporate.htm', 
'Market Research', 'marketing.htm'
));
menuContent [3] = new Array ( 
-1, 
-1,
175, // the width of current menu list 
528, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
128, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Desktop Themes', 'http://mrlen.ezthemes.com/pcenhance/dt/main.phtml', 
'ICQ Skins', 'http://mrlen.ezthemes.com/pcenhance/icq/main.phtml', 
'Jokes', 'http://mrlen.ezthemes.com/jokes/index.php', 
'Yahoo! Messenger Skins', 'http://mrlen.ezthemes.com/pcenhance/ms/main.phtml',
'Outlook Stationary', 'http://mrlen.ezthemes.com/pcenhance/os/main.phtml', 
'Site Backgrounds', 'http://mrlen.ezthemes.com/pcenhance/sb/main.phtml', 
'Screen Savers', 'http://mrlen.ezthemes.com/pcenhance/ss/main.phtml', 
'Wallpapers', 'http://mrlen.ezthemes.com/pcenhance/wp/main.phtml', 
'WinAmp Skins', 'http://mrlen.ezthemes.com/pcenhance/wa/main.phtml', 
'More..', 'http://mrlen.ezthemes.com'
));
menuContent [4] = new Array ( 
-1, 
-1,
175, // the width of current menu list 
500, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
213, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Audio and Video', 'http://www.stanfordpoint.com//shopping/audio-video/index.php', 
'Books', 'http://www.stanfordpoint.com//shopping/books/index.php', 
'Camera and Photo', 'http://www.stanfordpoint.com//shopping/camera-photo/index.php', 
'Computers', 'http://www.stanfordpoint.com//shopping/computers/index.php', 
'DVD', 'http://www.stanfordpoint.com//shopping/dvd/index.php', 
'Computer Games', 'http://www.stanfordpoint.com//shopping/computer-video-games/index.php', 
'Magazine Subscriptions', 'http://www.stanfordpoint.com//shopping/magazines/index.php', 
'Portable Electronics' ,'http://www.stanfordpoint.com//shopping/portable-electronics/index.php',
'Web Hosting', 'http://www.stanfordpoint.com//web-hosting/index.php', 
'More..', 'http://www.stanfordpoint.com//shopping/index.php'
));
menuContent [5] = new Array ( 
-1, 
-1,
175, // the width of current menu list 
600, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
213, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Lobby', 'http://www.stanfordpoint.com//forums/index.php/board,2.0.html', 
'New Members', 'http://www.stanfordpoint.com//forums/index.php/board,3.0.html', 
'Business', 'http://www.stanfordpoint.com//forums/index.php/board,4.0.html',
'Celebrity Watch', 'http://www.stanfordpoint.com//forums/index.php/board,5.0.html',
'Entertainment', 'http://www.stanfordpoint.com//forums/index.php/board,6.0.html',
'Political', 'http://www.stanfordpoint.com//forums/index.php/board,7.0.html',
'Sports', 'http://www.stanfordpoint.com//forums/index.php/board,8.0.html',
'Technology', 'http://www.stanfordpoint.com//forums/index.php/board,9.0.html',
'World News', 'http://www.stanfordpoint.com//forums/index.php/board,10.0.html',
'Feedback', 'http://www.stanfordpoint.com//forums/index.php/board,11.0.html'
));


