$(function(){

	$("#ea").focus(function(){
		if($(this).val() == "enter your email address")
		{
			$(this).val("");
		}
	});
	
	$("#ea").blur(function(){
		if($(this).val() == "")
		{
			$(this).val("enter your email address");
		}
	})

})
