function marriottSignup(){

    $.ajax({type: 'POST', url: 'http://www.sdmarriottgaslamp.com/ajax.php', data: { mode: 'signup', name: $('#signup-name').val(), email: $('#signup-email').val(), cell: $('#signup-cell').val(), zipcode: $('#signup-zip').val() }, success: function(data){ if(data == 1) { $('#marriott-signup-form').html('Thank you! You have been added to the San Diego Marriott Gaslamp Quarter newsletter to receive exclusive offers and updates.'); } else { $('#marriott-signup-button').html('<input type="image" src="images/btn-submit.png" onclick="marriottSignup(); return false;"/>'); $('#marriott-signup-error').html(data); } }, beforeSend: function(XMLHttpRequest){ loading('#marriott-signup-button'); }  });

}

function marriottBottle(){

    $.ajax({type: 'POST', url: 'http://www.sdmarriottgaslamp.com/ajax.php', data: { mode: 'bottle', name: $('#bottle-name').val(), datetime: $('#bottle-datetime').val(), size: $('#bottle-size').val(), phone: $('#bottle-phone').val(), email: $('#bottle-email').val() }, success: function(data){ if(data == 1) { $('#marriott-bottle-form').html('Thank you! A representative of ALTITUDE Sky Lounge will be in touch with you soon regarding your request.  We appreciate your inquiry and are glad you want to party 22 stories in the air with us!<br><br><a style="padding-left:20px;" href="" onclick="$(\'#bottle-form\').hide(); $(\'#link-list\').show(); return false;">Return</a>'); } else { $('#marriott-bottle-button').html('<input type="image" src="images/btn-reservenow.png" onclick="marriottBottle(); return false;"/>'); $('#marriott-bottle-error').html(data); } }, beforeSend: function(XMLHttpRequest){ loading('#marriott-bottle-button'); }  });

}

function loading(selector){

    $(selector).blur();

    $(selector).html('<img src="http://www.sdmarriottgaslamp.com/images/ajax-loader.gif" border="0">');
    
}

