$(function(){
	$('#email').focus();

	$('.submit').click(function(){ $('form').submit(); });
	$('form').submit(function(e){
		e.preventDefault();

		var email = $('#email').val();
		stc.api.get('user/addToMailingList', {
			email : email,
			type  : 'json'
		}, function(r){
			if(r.errors && r.errors[0].code == 401){
				alert('This e-mail address is already in our system,\nYou will receive your daily vouchr deals soon!\n\nThank You!');
			}else if(r.errors){
				alert('Sorry, but there was an unknown error.\n\nPlease try again later!');
			}else{
				alert('Thank you for signing up!\n\nYou will receive your daily vouchr deals soon!');
			}
		});
	});
});