// write me if you have questions: web.master@male.ru


// *** CODE REVISION COMMENTS ***
// by KDE write me if you have any questions: groggyjava@yahoo.com 
// 9 Oct 2001 
//   I modified the code so that the designer may place their drop-down menus where they please.
//   I left the orignal code in place (commented out, of course) so the code can be reverted to it original.
//   Please see comments in this document and in menu.js to see the changes.
//
// *** END CODE REVISION COMMENTS ***



// constants


// *** CODE REVISION  ***
// by KDE groggyjava@yahoo.com 
// 9 Oct 2001 
//   VARS left_corner_x and left_corner_y are no longer used in these scripts, 
// var left_corner_x  = 125; // x-coordinate of top left corner of dropdown menu 
// var left_corner_y  = 210; // y-coordinate of top left corner of dropdown menu 
// *** END CODE REVISION ***
var back_color     = '#E6E6E6'; // the background color of dropdown menu 
var border_color   = 'black'; // the color of dropdown menu border
var border_size    = '1'; // the width of dropdown menu border
var menu_width     = '121'; // the width of dropdown menu 
//


// Don't change these parameters
var delay           = 500; /////
var active_layer_id = -1;  /////
var on_layer_id     = -1;  /////
var buff_id         = -1;  /////
/// ----------------------------



// 
// *** CODE REVISION  ***
// by KDE groggyjava@yahoo.com 
// 9 Oct 2001 
//   I made the second and third numbers in the strings below equal to the (x,y) coordinates
//   of the desired layers.
//   See comments in menu.js to see how these numbers are used.
//
// *** ORIGINAL CODE ***
//   Attention! You have to change the first number in Array line to change the width of the particular column! 
//   menu content; the dropdown menus themselfs between '' and items of every dropdown menu are diveded by |; 
//   menu_content     = new Array (
//			      '200 | <a href=hockey_toc.html class=subMenu>Ice Hockey Table of Contents</a> | <a href=hockey_excerpts.html class=subMenu>Ice Hockey Excerpts</a>',
//			      '180 | <a href=football_toc.html class=subMenu>Football Table of Contents</a> | <a href=football_excerpts.html class=subMenu>Football Excerpts</a>',
//			      '190 | <a href=basketball_toc.html class=subMenu>Basketball Table of Contents</a> | <a href=basketball_excerpts.html class=subMenu>Basketball Excerpts</a>',
//			      '170 | <a href=soccer_toc.html class=subMenu>Soccer Table of Contents</a> | <a href=soccer_excerpts.html class=subMenu>Soccer Excerpts</a>',
//			      '200 | <a href=scholarship_intro.html class=subMenu>Scholarship Introduction</a> | <a href=scholarship_toc.html class=subMenu>Scholarship Table of Contents</a> | <a href=scholarship.html#testimonials class=subMenu>Testimonials</a>');
//			      
// *** REVISED CODE ***
// Attention! You have to change:
//    the 1st number in Array line to change the width of the particular column! 
//    the 2nd number in Array line to change the x coordinate of the menu
//    the 3rd number in Array line to change the y coordinate of the menu
// menu content; the dropdown menus themselfs between '' and items of every dropdown menu are diveded by |; 
menu_content     = new Array (
			      '200 | 130 | 225 | <a href=hockey_toc.html  class=subMenu>Ice Hockey Table of Contents</a> | <a href=hockey_excerpts.html  class=subMenu>Ice Hockey Excerpts</a>',
			      '180 | 130 | 275 | <a href=football_toc.html  class=subMenu>Football Table of Contents</a> | <a href=football_excerpts.html  class=subMenu>Football Excerpts</a>',
			      '190 | 130 | 330 | <a href=basketball_toc.html  class=subMenu>Basketball Table of Contents</a> | <a href=basketball_excerpts.html  class=subMenu>Basketball Excerpts</a>',
			      '170 | 130 | 380 | <a href=soccer_toc.html  class=subMenu>Soccer Table of Contents</a> | <a href=soccer_excerpts.html class=subMenu>Soccer Excerpts</a>',
			      '200 | 145 | 455 | <a href=scholarship_excerpts.html class=subMenu>Scholarship Excerpt</a> | <a href=scholarship_toc.html class=subMenu>Scholarship Table of Contents</a> | <a href=scholarship.html#testimonials class=subMenu>Testimonials</a>',
			      '150 | 400 | 80 | <a href=hockey_signals.html class=subMenu>Ice Hockey Signals</a> | <a href=football_signals.html class=subMenu>Football Signals</a> | <a href=basketball_signals.html class=subMenu>Basketball Signals</a> | <a href=soccer_signals.html class=subMenu>Soccer Signals</a>',
			      '150 | 580 | 80 | <a href=hockey_glossary.html class=subMenu>Ice Hockey Glossary</a> | <a href=football_glossary.html class=subMenu>Football Glossary</a> | <a href=basketball_glossary.html class=subMenu>Basketball Glossary</a> | <a href=soccer_glossary.html class=subMenu>Soccer Glossary</a>');
			      
			    
// *** END CODE REVISION ***
