// write me if you have questions: web.master@male.net

// constants
var initX       = 230; // x-coordinate of top left corner of dropdown menu 
var initY       = 55; // y-coordinate of top left corner of dropdown menu 
var backColor   = '#E6E6E6'; // the background color of dropdown menu, set empty '' for transparent
var borderColor = 'black'; // the color of dropdown menu border
var borderSize  = '1'; // the width of dropdown menu border
var itemHeight  = 20;
var xOverlap    = 5;
var yOverlap    = 10;
//

menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, // the id of parent menu, -1 if this is a first level menu
-1, // the number of line in parent menu, -1 if this is a first level menu
120, // 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 (
'The Newspoint Process >', 'process.htm',
'Our People', 'people.htm',
'Press Centre', 'press.htm',
'Our Charges', 'charges.htm'
));


menuContent [1] = new Array ( 
-1, 
-1,
120,
-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 (
'Public Relations', 'pr.htm',
'Marketing Consultancy', 'marketing.htm',
'Design and print', 'designPrint.htm',
'Multimedia Marketing', 'multimedia.htm',
'Sales Database Development', 'database.htm',
'Direct Marketing', 'directMarket.htm',
'Exhibition Support', 'exhibition.htm'
));

menuContent [2] = new Array ( 
-1, 
-1,
120,
-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 (
'Further Information', 'info.htm',
'Request Credentials', 'credentials.htm'
));

menuContent [3] = new Array ( 
-1, 
-1,
120,
-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 (
'Client List', 'clients.htm',
'Client Login', 'login.htm'
));

menuContent [4] = new Array ( 
0, 
0,
120,
-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 (
'The PR and Marketing Audit', 'prAudit.htm',
'Setting Objectives', 'objectives.htm',
'The PR and Marketing Plan', 'prPlan.htm',
'Implementation', 'implement.htm',
'Review', 'review.htm'
));



