$(document).ready(function(){
	
	// Remove and repopulate the search field's default value when clicked into
	$("form.search input.text-input").focus(function() { 
		if ( $(this).val() == "Enter search...") {
			$(this).val("");
		}
	});
	$("form.search input.text-input").blur(function() { 
		if ( $(this).val() == "") {
			$(this).val("Enter search...");
		}
	});
	
	// So the same thing for the email sign up
	$("#emailSignUp").focus(function() { 
		if ( $(this).val() == "Enter email address") {
			$(this).val("");
		}
	});
	$("#emailSignUp").blur(function() { 
		if ( $(this).val() == "") {
			$(this).val("Enter email address");
		}
	});	
});