	function buildMenu()
	{
		
		var menu = [
			{href: "http://www.4woman.ru/", name: "О салоне"},
			{href: "http://www.4woman.ru/price.php", name: "Наши цены"},
			{href: "http://www.4woman.ru/parikmaher.php", name: "Парикмахерские услуги"},
			{href: "http://www.4woman.ru/manikur.php", name: "Маникюр и педикюр"},
			{href: "http://www.4woman.ru/kosmetic.php", name: "Косметология"},
			{href: "http://www.4woman.ru/makiazh.php", name: "Макияж"},
			{href: "http://www.4woman.ru/kontakti.php", name: "Контакты"}
		];
		
		var el = document.getElementById('headright');
		var t_arr = window.location.href.split('/');
		var href = t_arr[t_arr.length - 1];
		
		var ul = document.createElement("ul");
		
		for( i in menu )
		{
			var li = document.createElement("li");
			var a = document.createElement("a");
			a.appendChild( document.createTextNode(menu[i].name) );
			
			if(menu[i].href == href)
			{
				a.style.color = '#fff';
				a.setAttribute("href", '#');
			}
			else
				a.setAttribute("href", menu[i].href);
			
			li.appendChild( a );
			
			ul.appendChild( li );
			
		}
		
		el.appendChild( ul );
		
	}
	buildMenu();

