$(document).ready(function(){		
					
});
$(function() {
	
	$("form#beta").submit(function(){
		
		
		
		
		var email		= $('#email').attr('value');
		//alert("task=beta&email="+ email);
		$.ajax({
			type: "POST",
			url: "http://bonush.com/sys/classes/core.php",
			data: "task=beta&email="+ email,
			success: function(data){
				if((data) == 1)
				{
					$('#notify').show();
					$('#notifyheader').html("Thank You!");
					$('#notifytext').html("<br/>You have been added to our beta testers program.<br/><br/>Please note that we hand out our beta codes by a first come first serve.<br/><br/>We will be in touch very soon.");
					setTimeout(function() {
						$('#notify').fadeOut(900);
						
					}, 10000);
				
				}
				else
				if((data) == 2)
				{
					$('#notify').show();
					$('#notifyheader').html("Already Signup");
					$('#notifytext').html("<br/>WOW - slow down! your already on our beta team list.<br/><br/> We will email you ASAP when its time for you to test out Bonush.");
					setTimeout(function() {
						$('#notify').fadeOut(900);
						
					}, 10000);
				
				}
			
			}
		
		});
	return false;
	
	
	});
	
});
