$(function() {
  $(".submit").click(function() {
		
	var author = $("input#author");


	var email = $("input#email");
	
	var comment = $("textarea#comment");


		var dataString = 'author='+ author + '&email=' + email + '&comment=' + comment;
	
		
		$.ajax({
      type: "POST",
      url: "http://www.ernista.lt/wp-content/themes/ernista_theme/bin/process.php",
      data: dataString,
      success: function() {
        $('#contact_form').html("<div id='message'></div>");
        $('#message').html("<h2>Contact Form Submitted!</h2>")
        .append("<p>We will be in touch soon.</p>")
        .hide()
        .fadeIn(1500, function() {
          $('#message').append("<img id='checkmark' src='images/check.png' />");
        });
      }
     });
    return false;
	});
});


