$(document).ready(function() {

});

function signup() {
	var name= $('#name').val();
	var email= $('#email').val();
	if(name == '' || email == '') {
		$('<p>Whoa partner, we need to have your name and email before you can get signed up.</p>').prependTo('#apply_beta_form');
	} else {
	$.post('http://gettrackerapp.org/ajax/signup?name=' + name + '&email=' + email,
		function( data ) {
			if(data == 1) {
				$('#apply_beta_form').hide();
				$('#apply_beta_form').html('<p>Thanks for the info, we\'ll be in touch!</p>');
				$('#apply_beta_form').fadeIn();
			} else if(data == 2) {
				$('#apply_beta_form').hide();
				$('#apply_beta_form').html('<p>Whoops, looks like you have already signed up. Be patient, we\'ll get to you as soon as we can!</p>');
				$('#apply_beta_form').fadeIn();
			}
		}
	);
	}
	return false;
}