/*///////////////////////////////////////////////////////////////////////Ported to jquery from prototype by Joel Lisenby (joel.lisenby@gmail.com)http://joellisenby.comoriginal prototype code by Aarron Walter (aarron@buildingfindablewebsites.com)http://buildingfindablewebsites.comDistrbuted under Creative Commons licensehttp://creativecommons.org/licenses/by-sa/3.0/us////////////////////////////////////////////////////////////////////////*/
//$(document).ready(function() {	$('#signup').submit(function() {		// update user interface		$('#response').html('Добавление e-mail..');				// Prepare query string and send AJAX request		$.ajax({			url: '/wp-content/themes/starmarketing/mcapi/inc/store-address.php',			data: 'ajax=true&email=' + escape($('#email').val()),			success: function(msg) {				$('#response').html(msg);			}		});			return false;	});});
