/* --- geometry and timing of the menu --- */
var MENU_POS = new Array(); 
 // A. Item's width in pixels 
MENU_POS['width'] = [100, 132, 162, 192, 220]; 
// B. Item's height in pixels 
MENU_POS['height'] = [34, 34, 34, 34, 34]; 
// C. Horizontal Offset between the items within level in pixels 
MENU_POS['left'] = [101, 0, 0, 0, 0]; 
// D. Vertical Offset between the items within level in pixels 
MENU_POS['top'] = [0, 31, 31, 31, 31]; 
// E. Horizontal Offset between adjacent levels* in pixels 
MENU_POS['block_left'] = [5, 0, 132, 140, 160, 180]; 
// F. Vertical Offset between adjacent levels* in pixels 
MENU_POS['block_top'] = [56, 33, 10, 10, 10]; 
// Time delay in milliseconds before menu collapses after mouse pointer left all items** 
MENU_POS['hide_delay'] = [200, 200, 200, 200, 200]; 
// Path to transparent gif 1x1 px as it appears in src attribute of <img> tag 
MENU_POS['pixel_path'] = 'http://www.rtol.net/sfbc/teens/script/pixel.gif'; 
// Horizontal menu alignment - (left, center, right) *** 
MENU_POS['align'] = 'left'; 
// Vertical menu alignment - (top, center, bottom) **** 
MENU_POS['valign'] = 'top'; 
// Static positioning configuration - (none, vertical, horizontal, both) **** 
MENU_POS['scroll'] = 'none'; 



