
// constants

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

// y-coordinate of top left corner of dropdown menu (25 is height of menu, 60 is height of amp_top_panel.gif so  this value is 25+60)
var initY             = 85; 

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

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

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

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

// height of menu itesm
var itemHeight  = 25;

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

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
70, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'FAQ', 'amp_faq.shtml', ''
));

menuContent [1] = new Array ( 
-1, 
-1,
138, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'My Medicine List', 'amp_mymedlist.shtml' ,'',
'Poison Prevention', 'amp_poisonprev.shtml' ,'',
'Pill ID', 'amp_pillid.shtml' ,''
));

menuContent [2] = new Array ( 
-1, 
1,
132, // the width of current menu list (receive width from td tag size in menu html)
-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 (
'Pharmacy Career', 'amp_rxcareer.shtml', ''    
));
