/* / Load Events Listeners */Event.observe(window, 'load', init, false);function init(){	Event.observe('signup','submit',storeAddress);}/*// AJAX call sending sign up info to store-address.php*/function storeAddress(event) {	/*// Update user interface*/	$('response').innerHTML = 'Saving your info...';	/*// Prepare query string and send AJAX request	// NOTE: You'll need to define what info your list will accept in your MailChimp account in 	// Lists > click the desired list > list settings > Merge tags for personalization */	var pars = 'ajax=true&email=' + escape($F('email'));	var myAjax = new Ajax.Updater('response', '/wp-content/themes/spektra/mail/store-address.php', {method: 'post', parameters: pars});	Event.stop(event); /*// Stop form from submitting when JS is enabled*/}

