$(function() {

$('#mce-EMAIL').focus(function() {
		if($(this).attr("value") == "Your email address here") { $(this).attr("value",""); }
	});
	$('#mce-EMAIL').blur(function() {
		if($(this).attr("value") == "") { $(this).attr("value","Your email address here"); }
	});


});
