$(document).ready(function() {
	
	$('form').submit(function() {
		data = $(this).serialize();
		// alert(data);
		return false;
	});
	
	
});

