/*///////////////////////////////////////////////////////////////////////Ported to jquery from prototype by Joel Lisenby (joel.lisenby@gmail.com)http://joellisenby.comoriginal prototype code by Aarron Walter (aarron@buildingfindablewebsites.com)http://buildingfindablewebsites.comDistrbuted under Creative Commons licensehttp://creativecommons.org/licenses/by-sa/3.0/us////////////////////////////////////////////////////////////////////////*/$(document).ready(function() {	$('#signup-full').submit(function() {		// update user interface		$('#response-full').html('Adding email address...');				// Prepare query string and send AJAX request		$.ajax({			url: 'inc/store-address-full.php',			data: 'ajax=true&c_email=' + escape($('#c_email').val()),			success: function(msg) {				$('#response-full').html(msg);			}		});			return false;	});});
