$(document).ready( function() {
	$('#vote').bind('click', function() {
		$.ajax({
		   type: "POST",
		   url: "insertInquiryAnswer.php",
		   data: $(this).parent('form').serialize(),
		   success: function(msg){
		     $('div.inquiry').html('<div class="sent_inquiry">' + msg + '</div>');
		   }
		 });
		return false;
	})
})