$(function() {
  $("button#search_send").click(function() {
        $('#search_formform').slideToggle('#search_formhandle');
		 $('#search_formhandle').show("slow");
      var search_form  = $("form#search_form").serialize();
        $.ajax({
      type: "POST",
      url: "misc.php?do=Search",
      data: search_form,
      success: function(msg) {
        
		if(msg == '0')
		{
		$('#search_formhandle').slideToggle('#search_formform');
		$('#search_formform').show("slow");
		alert('عذرا  ، لا توجد نتائج لبحثك');
		}
		else
		{
		$('#search_formhandle').slideToggle('slow');
		$('#search_formform').slideToggle('slow');
		
		$('#All').show("slow");
		$("#All").html(msg);
		}
		

      }
     });
    return false;
    });
});

function Back_search_form (){
			$('#search_formform').slideToggle('#msgreturn_search_form');
			$('#msgreturn_search_form').hide("slow");
	}
