$(document).ready(function() {
	$('#screenshots li').fadeTo('slow', 0.5);
	$('#screenshots li').hover(
	  function () {
		$(this).stop();
	    $(this).fadeTo('normal', 1);
	  },
	  function () {
		$(this).stop();
	    $(this).fadeTo('normal', 0.5);
	  }
	);
	$('#email').focus(function() {
		if ($(this).val() == "Enter your email here so we can get this party started...") {
			$(this).val('');
		}
	});
	$('#beta-signup').submit(function() {
		var email = $('#email').val();
		$.post("php/signup.php", { email: email },
			function(data){
				$('.success, .error').remove();
				$('#beta-signup').append(data);
				if (data == '<p class="success">Success!</p>') {
					$('#submit').attr('disabled', 'disabled');
				}
		});
		return false;
	});
});