 $(document).ready(function(){
 	   $(".accordion h3:first").addClass("active");
	   $(".accordion p:not(:first)").hide();

	   $(".accordion h3").click(function(){
		   $(this).next("p").slideToggle("slow").siblings("p:visible").slideUp("slow");
		   $(this).toggleClass("active");
		   $(this).siblings("h3").removeClass("active");
	   });
	   
	   $(".accordion h3:first").addClass("active");
	   
	   $("#btncancel").click(function(){
           document.getElementById("guest_mess").value=" Сообщение";
		   document.getElementById("guest_city").value=" Город";
		   document.getElementById("guest_name").value=" Имя";
       }); 	  
       $("#guest_name").focus(function(){
           if (this.value==" Имя") this.value = "";
       });
       $("#guest_name").blur(function(){
           if (this.value=="") this.value = " Имя";
       });
       $("#guest_city").focus(function(){
          if (this.value==" Город") this.value = "";
       });
       $("#guest_city").blur(function(){
          if (this.value=="") this.value = " Город";
       });
       $("#guest_mess").focus(function(){
          if (this.value==" Сообщение") this.value = "";
       });
       $("#guest_mess").blur(function(){
          if (this.value=="") this.value = " Сообщение";
      });
	  $("#btncancel").click(function(){
           document.getElementById("guest_mess").value=" Сообщение";
		   document.getElementById("guest_city").value=" Город";
		   document.getElementById("guest_name").value=" Имя";
      }); 
   });
