$j(document).ready(function() {
	$j("#fred-subscribe").focus(function() {
		if ($j(this).val() == "Your email here!") {
			$j(this).val("");
		}
	});
	$j("#fred-subscribe").blur(function() {
		if (!$j(this).val().length) {
			$j(this).val("Your email here!");
		}
	});
});
