/*///////////////////////////////////////////////////////////////////////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').submit(function() {		$('#mailing-list-response').html('Adding email address...');				$.ajax({			url: 'http://www.civiccentertv.com/wp-content/themes/cvtvredux/assets/mcapi/store-address.php',			data: 'ajax=true&email=' + escape($('#email').val()),			success: function(msg) {				$('#mailing-list-response').html(msg);			},			error: function() {				$('#mailing-list-response').html('Whoops, there seems to be an error...');			}		});			return false;	});});
