$(document).ready(function() {
	var email_value = "Your email/phone"

	$("#email").
	focus(function() {
		if ($(this).val() == email_value) {$(this).val("")};
	}).
	blur(function() {
		if ($(this).val() == "") {$(this).val(email_value)};
	});
});
