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 = 220, //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 ('О фирме','ru.htm','Об Ariadne Counselling' ),
new menuEl ('Оценка данных','#','Заполните анкету' ),
new menuEl ('Иммиграция','#','Иммиграционное оформление' ),
new menuEl ('Наши услуги','rconsulting.htm','Услуги Ariadne Counselling' ),
new menuEl ('В Канаде','#','Карточка PR' ),
new menuEl ('Ссылки','rlinks.htm','Ссылки на сайты' ),
new menuEl ('Контакт','ru.htm#contact','tel fax email' )),

// sub menu

	sMenu = new Array (

	new Array(),

//2

new Array(
new menuEl ('Skilled Workers','formstart.htm','Оценка данных для профессиональной программы'),
new menuEl ('Бизнесмены','rbusassess.htm','Оценка данных для бизнес-программы')),

new Array(
new menuEl ('Skilled Workers','rskilled.htm','Профессиональная иммиграция'),
new menuEl ('Бизнес-иммиграция','rbusiness.htm','Иммиграция по бизнес-программе'),
new menuEl ('Спонсорство','rsponsorship.htm','Спонсирование родственников')),

//4

new Array(
new menuEl ('Консультации','rconsulting.htm','Консультации по иммиграционным вопросам'),
new menuEl ('Запросы','rconsulting.htm','Запросы копии файла'),
new menuEl ('Счет в банке','rconsulting.htm','Открытие банковского счета'),
new menuEl ('Оценка диплома','rconsulting.htm','Оценка уровня диплома'),
new menuEl ('Инженеры','rconsulting.htm','Оценка дипломов в ССРЕ'),
new menuEl ('Проверка файла','rconsulting.htm','Проверка иммиграционного файла'),
new menuEl ('Подготовка к интервью','rconsulting.htm','Иммиграционное интервью')),

new Array(
new menuEl ('Карточка PR','rprcard.htm','Пластиковая карточка иммигранта')),

//6
	
new Array(),
new Array());

				

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

function menuEl (label, lien, alt) {

	this.label = label;

	this.lien = lien;

	this.alt = alt;

} 

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

