/*///////////////////////////////////////////////////////////////////////
Part of the code from the book 
Building Findable Websites: Web Standards, SEO, and Beyond
by Aarron Walter (aarron@buildingfindablewebsites.com)
http://buildingfindablewebsites.com

Distrbuted under Creative Commons license
http://creativecommons.org/licenses/by-sa/3.0/us/
///////////////////////////////////////////////////////////////////////*/

// Load Events Listeners
$(function() {
    $('#signup').submit(function() {
        storeAddress();
        return false;
    });
});

// AJAX call sending sign up info to store-address.php
function storeAddress() {
    var email = $('#email').val();
    // Update user interface
    $('#email').val('Adding email address...');
    // Prepare query string and send AJAX request
    var pars = 'ajax=true&email=' + escape(email);
    jQuery.get('inc/store-address.php?'+pars, function(data) {$('#email').val(data);});
}

