﻿	<!--
	function createSimpleMenus() {
		createMenu('topMenu1')
			topMenu1.addItem('topMenu1_1') ;
			topMenu1_1.caption = '&nbsp;Цел и същност';
			topMenu1_1.bgColor = "#D9E2F4";
			topMenu1_1.command = "goals.htm";
			topMenu1.addItem('topMenu1_2') ;
			topMenu1_2.caption = '&nbsp;Изисквания';
			topMenu1_2.bgColor = "#D9E2F4";
			topMenu1_2.command = "requirements.htm";
			topMenu1.addItem('topMenu1_3')
			topMenu1_3.bgColor = "#D9E2F4";
			topMenu1_3.caption = '&nbsp;Приемните семейства' ;  // ........the third item ..............
			topMenu1_3.command = "families.htm";
			topMenu1.addItem('topMenu1_4')
			topMenu1_4.bgColor = "#D9E2F4";
			topMenu1_4.caption = '&nbsp;Задълженията на Au-Pair' ;  // ........the third item ..............
			topMenu1_4.command = "duties.htm";
			topMenu1.addItem('topMenu1_5')
			topMenu1_5.bgColor = "#D9E2F4";
			topMenu1_5.caption = '&nbsp;Нашите партньори' ;  // ........the third item ..............
			topMenu1_5.command = "partners.htm";

		createMenu('topMenu2')
			topMenu2.addItem('topMenu2_1') ;
			topMenu2_1.caption = '&nbsp;Кандидатстване';
			topMenu2_1.bgColor = "#D9E2F4";
			topMenu2_1.command = "applying.htm";
			topMenu2.addItem('topMenu2_2')
			topMenu2_2.bgColor = "#D9E2F4";
			topMenu2_2.caption = '&nbsp;Документи' ;  // ........the third item ..............
			topMenu2_2.command = "documents.htm";

		setupMenus() ;
	}

	function ShowDate() {
		d = new Date();
		dd = d.getDate();
		dm = d.getUTCMonth();
		dy = d.getUTCFullYear();
		dm++;
		if (dd < 10) {
			dd = '0' + dd;
		}
		if (dm < 10) {
			dm = '0' + dm;
		}
		document.write(dd+'. '+dm+'. '+dy);
	}

	//  End -->

