$(document).ready(function(){
	
	$("#contact").click(function(){
	
		var args = $("#contact_form").serialize();
		
		$("#tastenotes_box_inside").fadeOut("slow", function(){
		$("#response").html('<div class="box"><img src="images/loading.gif" /> <h2>Sending Email...</h2></div>');
		$("#response").fadeIn("slow");
		});
		
		$.ajax({
			url: "/data/sendEmail.php",
			type: "POST",
			dataType: "json",
			data: args,
			error: function(err){
					//alert("Oops! Something went wrong. Please try again")
			},
			success: function(response)
			{
				if (response.result == "success")
				{
					$("#response").html('<div class="box">Your message was sent succesfully! Someone will be in contact with you soon.</div>');
				}
				else
				{
					$("#tastenotes_box_inside").fadeIn("slow", function(){
						$("#response").html('<div class="box">' + response.msg + '</div>');
						$("#response").fadeIn("slow");
					});
				}
					
			
			}
		});
	
		return false;
		
	});
	

});
