/* Author: Gallipro */
$(document).ready(function() {

	var send_email = function(){
		var from = $('#email').val(),
			 msgSpeed = 100,
			 to = 'info@gallipro.com',
			 subject = 'coming soon';
		
		$.post("email.php", { from: from, to: to, subject: subject },
			function(data){				
				if(data.result == 'success'){  
					$("#signUp").hide(0);
                    $("#success").fadeIn(0);
				}else{
					$("#fail").fadeIn(0);
				}
		 }, 'json');
	}

	$('#submit').live('click', function(){
		send_email();
		return false;
	});
	
	$('#signUp').bind('keydown', function(e) {
		if (e.keyCode == 13) {
			send_email();
			return false;
		}
	});

});
