// JavaScript Document
$(document).ready(function(){
	$('#btn_send').click(function(){
	 info = $('#feedback_form').serialize()
		$.ajax({
		   type: "POST",
		   url: 'include/libs/contact.php',
		   data: info,
		   async: true,
		   cache: true,
		   success: function(data){
			   $('.feed_back_alert').html(data)
			   $('.feed_back_alert').fadeIn('normal')
		  }
	    });
	})

})