// x-coordinate of top left corner of dropdown menu 
var initX = 187;

// y-coordinate of top left corner of dropdown menu 
var initY = 144; 

// the background color of dropdown menu (set empty '' for transparent)
var backColor = '#336699'; 

// the background color of selected menu items, set empty '' for transparent
var activeBackColor = '#9FD0FF'; 

// the color of dropdown menu border
var borderColor = '#6699CC'; 

// the width of menu border
var borderSize  = '1'; 

// 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, 
178, // 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 (
'Create Invoice', 'index.php?createInvoice1=1',
'Pending Invoices', 'index.php?updatePendingDocument=1',
'Pending Estimates', 'index.php?updatePendingEstimate=1',
'Review Any Document', 'index.php?reviewAnyDocument=1',
'Due Date Summary', 'index.php?job_search=1',
'Today\'s Sales Report', 'index.php?salesReport=1',
'Last Week Sales Report', 'index.php?last_week_salesReport=1',
'Weekly Sales Report', 'index.php?week_salesReport=1',
'GangRun Num Entry', 'index.php?gangrun_entry=1',
'Generate GangRun Sheet', 'index.php?gangrun_search=1'
));

menuContent [1] = new Array ( 
-1, 
-1,
108, // 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 (
'Register Tape', 'index.php?openTape=1'
));

menuContent [2] = new Array ( 
-1, 
-1,
189, // 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 (
'Post Payment', 'index.php?openPostPayment=1'
));

menuContent [3] = new Array ( 
-1, 
1,
169, // 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 (
'Account History', 'index.php?customerList=1', 
'Monthly Order Report', 'index.php?monthly_orders=1',
'Customer Referral Report', 'index.php?customerReport=1',
'Customer Survey Report', 'index.php?customerSurvey=1',
'Sales Report By Product', 'index.php?productOrder_report=1',
'Coupon Usage Report', 'index.php?couponCode_report=1',
'Affiliate Report', 'index.php?affiliate_report=1',
'Sales Journal', 'index.php?salesJournal=1',
'Monthly Resale Accounts', 'index.php?resale_monthly=1',
'weekly Sales Report', 'index.php?weeklySalesReport=1',
'Monthly Sales Report', 'index.php?monthlySalesReport=1'
));

menuContent [4] = new Array ( 
-1, 
1,
162, // 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 (
'Company Set-Up', 'index.php?viewSetup=1',
'VIP Account Set-Up', 'index.php?vipSetup=1',
'Resale Accounts', 'index.php?resaleSetup=1',
'Promotion Direct Edit', 'index.php?promo_direct=1',
'Sending eBlast', 'index.php?mailingList=1'
));

menuContent [5] = new Array ( 
-1, 
1,
169, // 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 (
'Account Management', 'index.php?accountManagement=1',
'Release Locks', 'index.php?lock_release=1'
));
