$(document).ready(function(){
	
	$(".accordion h3:first").addClass("active");
	$(".accordion p:not(:first)").hide();
        $("#zadat_vopros").hide();

	$(".accordion h3").click(function(){
		$(this).next("p").slideToggle("slow")
		.siblings("p:visible").slideUp("slow");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
       $("a#ShowQuestionForm").click(function(){
        $("div#zadat_vopros_form").show("slow");
        });

});

function displaymessage()
{
alert("دوقمْ!");
}
