$(function() {
	$.ajax( { type : "post", 
		  url : "testimonial/update_entry",
		  data : ({body : $("textarea#body").val(),name :$("input#author").val(), company :$("input#company").val()  }), 			          
			success: function(data){
			$("#messageSent").show("slow");
			}
		});	

});

