$(function() {
	$('input[name=send]').click(function() {
		var sendmail = $('.contactform').serialize();
		
		$.ajax({
			type: "POST",
			url: "/cgi-bin/maildata.cgi",
			data: sendmail,
			success: function(response) {
				$('#contact').fadeOut(300, function() {
					$(this).empty()
					.append(response)
					.fadeIn(400);
				})
			}
		});
	});

// End Send Contact Email
});
