$(function() {

	$("input").focus(function() {
		if ($(this).val() == "email") {
			$(this).val('');
		}
	});

	$("#entered").fadeOut(2000);

});