$(function() {
	$("#subscribeouter .inputbox").focus(function() {
		if(this.value == "Enter Email Address")
		{	
			this.value = "";
		}
	});
});

