$(document).ready(function(){
	$("#email").focus(function(){

		if($(this).val() == "Enter your e-mail address"){
			$(this).val("");
		}
	});
});

