// JQuery Объект
$(document).ready(function(){

	//$("#divservice").hide();

	// получаем телефон
	$(".phone_hide").click(
	function()
	{
		var myClassStrId = $(this).attr("id");
		// отрезаем слово "phone", чтобы получить id
	    var id = myClassStrId.substring(5);
		// если щелчек первый раз, то поле содержит текст "Показать телефон",
		// иначе ничего не делаем
		if ($(this).text() == "Показать телефон" )
		{
			$.ajax({
		 		type: "GET",
		 		url: "/ajax/phone_get.php?id=" + id,
		 		dataType: "xml",
		 		success: function(xml) {
		 			var phone = xml.getElementsByTagName("BEAUTY")[0].childNodes[0].childNodes[0].nodeValue;
					phone = phone + "<br/><span style='font-size: 12px; color:#ff0000;'> (При звонке обязательно упомяните, что Вы с сайта Beauty.Vitava.com.ua)</span>";
					var el_name = "span#phone" + id;
					$(el_name).html(phone);
					$(el_name).attr("class", "phone_show");
		 		} // end success
			})// end ajax
		}  // end if
	}) // end function

	// показываем и прячем услуги по щелчку
	$("#h1service").toggle(
	  function () {
	    $(this).text("Услуги <<");
	    $(this).attr("title", "Свернуть");
	    $("#divservice").slideDown("slow");
	  },
	  function () {
	    $(this).text("Услуги >>");
	    $(this).attr("title", "Развернуть");
	    $("#divservice").slideUp("slow");
	  }
	);


}); // the JQuery