$(document).ready(function(){
	$("#btn_send").click( function() {
		post_data = $('#reg_form').serialize();
		$(".error").text("Sending form ...").show("fast");
		$.post('/register_process', post_data, function(data) {
			if (data=='done') {
				$('#reg_form').hide();
				$(".thank_you").fadeIn();
			} else {
				$(".error").text(data).show("fast"); 
			}
		});
	});
	
});