// Last change July 14 2003
// Developed by web.master@male.ru


// constants

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

// y-coordinate of top left corner of dropdown menu 
var initY             = 46; 

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

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

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

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

// height of menu itesm
var itemHeight  = 20;

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

// end of constants


menuContent     = new Array ();

menuContent [0] = new Array ( 
-1, 
-1, 
100, // the width of current menu list 
113, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
337, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'property tools', 'propertytools.html target="_top"', 
'loan tools', 'calculators/loantools.html target="_top"'
));

menuContent [1] = new Array ( 
-1, 
1,
100, // the width of current menu list 
113, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
195, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'home loan advice', 'homeloanadvice.html target="_top"',
'the emperor service', 'emperor.html target="_top"'

));

menuContent [2] = new Array ( 
-1, 
1,
120, // the width of current menu list 
113, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
130, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Event Pack', 'functionbooklet.pdf target="_blank"', 
'Southern Cross', 'southerncross.html target="_top"', 
'Bass and Flinders Room', 'bass_flinders.html target="_top"',
'Dug Out', 'dugout.html target="_top"',
'Plush', 'plush.html target="_top"', 
'Verandah', 'verandah.html target="_top"',
<!---'Function Menus', 'function_menu.cfm target="_top"',--->
'Event Enquiry', 'function_enquiry.html target="_top"',
'Tradies Wedding Planners', 'wedding_planner.html target="_top"'
));

menuContent [3] = new Array ( 
-1, 
1,
120, // the width of current menu list 
435, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
115, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Tradies Business Centre', 'business_centre.html target="_top"', 
'Tradies Brasserie', 'brasserie.html target="_top"', 
'Eureka Café', 'eureka.html target="_top"',
'Sports Bar', 'sportsbar.html target="_top"'
));

menuContent [4] = new Array ( 
-1, 
1,
120, // the width of current menu list 
505, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
115, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Membership Benefits', 'membership_benefits.html target="_top"', 
'Membership Application', 'membership_application.cfm target="_top"', 
'Membership Renewal', 'membership_renewal.cfm target="_top"',
'Change of Address', 'change_address.html target="_top"',
'Membership Query', 'membership_query.html target="_top"'
));

menuContent [5] = new Array ( 
-1, 
1,
120, // the width of current menu list 
595, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
115, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
<!---'Staff Login', 'staff_login.cfm', --->
'Employment Opportunities', 'employment/employment.html target="_blank"'
));

menuContent [6] = new Array ( 
-1, 
1,
120, // the width of current menu list 
230, // x coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent x-coordinate
115, // y coordinate (absolute) of left corner of this menu list, -1 if the coordinate is defined from parent y-coordinate
new Array (
'Human Dignity', 'human.html target="_top"',
'Synergy/Teamwork', 'synergy.html target="_top"',
'Education/Knowledge', 'education.html target="_top"',
'Innovation, Growth & Adaptability', 'innovation.html target="_top"',
'Accountability', 'accountability.html target="_top"',
'Productivity', 'productivity.html target="_top"'

));


