var 	

menuTop = 111, //This Line Fixes How Many Pixels from the TOP of the page the menu should appear			
menuLeft = 0, //This line fixes how many pixels from the LEFT SIDE of the page the menu should appear			
menuWidth = 145, //This fixes the width of the menu 		
sMenuWidth = 200, //This fixes the width of the submenus 		
menuElHeight = 20,	
sMenuElHeight = 18,		
menuColorOff = '#666666',	
menuColorOn = '#000000', 	
sMenuColorOff = '#666666',
sMenuColorOn = '#000000',

//  main menu - 1st entry is text on menu - 2nd entry is link - 3rd entry is status bar text
	menu = new Array (

new menuEl ('Home','en.htm','Navigation Page'),
new menuEl ('Assessment','#','Eligibility Assessment' ),
new menuEl ('Immigration','#','Permanent Status' ),
new menuEl ('PR Card','residentcard.htm','Maple Leaf Card' ),
new menuEl ('Temporary Entry','#','Temporary Status'),
new menuEl ('Consulting','consulting.htm','Consulting Services'),
new menuEl ('Representatives','#','About representatives' ),
new menuEl ('FAQ','#','Frequently Asked Questions' ),
new menuEl ('Resources','links.htm','Useful Links To Canadian Sites'),
new menuEl ('Client Zone','masterform.htm','Zone for our clients'),
new menuEl ('About Ariadne','#','About Firm' )

),

//sub menu

	sMenu = new Array (
	
new Array(),

new Array(      
new menuEl ('Skilled Workers','formstart.htm','Skilled Worker Assessment'),
new menuEl ('Family Sponsorship','assessmentfamily.htm','Family Class Assessment'),
new menuEl ('Same-Sex Partners','assessmentfamily.htm','Family Class Assessment'),
new menuEl ('Businessmen','ebusassess.htm','Business Applicants Assessment'),
new menuEl ('PR Card','assessmentprcard.htm','PR Card Assessment')
),

new Array(
new menuEl ('Immigration','permanent.htm','Permanent Status'),
new menuEl ('Skilled Workers','skilledworkergen.htm','Skilled Worker Programs'), 
new menuEl ('Business Immigration','business.htm','Business Immigration Program'), 
new menuEl ('Quebec Business','quebinvestor.htm','Quebec Business Immigration Program'),
new menuEl ('Nova Scotia Business','novascotiainvestor.htm','Nova Scotia Business Immigration Program'),
new menuEl ('Family Immigration','sponsorshipvisa.htm','Family Sponsorship'),
new menuEl ('Same-Sex Partners','sponsorshipvisa.htm','Same-Sex Couples')),

new Array(),

new Array(
new menuEl ('Temporary Entry','temporary.htm','Temporary Status'),
new menuEl ('Foreign Workers','workpermit.htm','Temporary Workers'),
new menuEl ('Students','students.htm','International Students'),
new menuEl ('Visitors','visitor.htm','Visitors to Canada')),

new Array(),

new Array(      
new menuEl ('Your Representative','represent.htm','About Representatives'),
new menuEl ('Representation','representation.htm','Representation Services')),

new Array(
new menuEl ('Contents','faq.htm','Questions About Immigration'),
new menuEl ('General Questions','questions1.htm','General Questions About Immigration'),
new menuEl ('Immigration Requirements','questions2.htm','Immigration Requirements'),
new menuEl ('Application Process','questions3.htm','How Application Process Works'),
new menuEl ('Health Requirements','questions4.htm','Health Requirements'),
new menuEl ('Security Check','questions5.htm','Police Clearance and Background Check'),
new menuEl ('Skilled Worker','questions6.htm','Skilled Worker/Professional Applications'),
new menuEl ('Business Applications','questions7.htm','Business Applications'),
new menuEl ('Family Class','questions8.htm','Family Sponsorship')
),

new Array(),

new Array(),

new Array(
new menuEl ('About Ariadne','profile.htm','About Ariadne Counselling'),
new menuEl ('Our Services','services.htm','List of Services'),
new menuEl ('Contact Us','contact.htm','Contact Information'))

);

// --------------------------------------------------------------------------------------------------------------------------------------

function menuEl (label, lien, alt) {

	this.label = label;

	this.lien = lien;

	this.alt = alt;

} 

// --------------------------------------------------------------------------------------------------------------------------------------


