$(function() {

$("input[type=text], textarea").one("focus", function() {
  $(this).val("");
}); 
$("#slideshow").cycle();
  $("#gallery").cycle({
        fx:       'fade',
        timeout:   8000,
        after:     function() {
            $('#caption').html(this.alt);
            }
        });
        
$("#slideshow").css('height', '355px');

   $('form').submit(function() {
     var qstring = $(this).serialize();
     
     $.ajax({
      url: "includes/process_consultation_ajax.php",
      type: "POST",
      data: qstring,
      dataType: "html",
      success: function(data){$('#results').html(data).hide().fadeIn(1500); }
	  });
     
     return false;
});

  
}); //end load
