$(document).ready(function() {
	//	Imposto il title come value	dell'input del bx newsletter				   
$("#regNewsletter").val($("#regNewsletter").attr("title"));
$("#regNome").val($("#regNome").attr("title"));
$("#regNewsletterCanc").val($("#regNewsletterCanc").attr("title"));
	$("#regNewsletter").focus( function () {
		if ($(this).val() == $(this).attr("title")) {
			 $(this).val("");
			 }
		});
	$("#regNome").focus( function () {
		if ($(this).val() == $(this).attr("title")) {
			 $(this).val("");
			 }
		});
	$("#regNewsletterCanc").focus( function () {
			if ($(this).val() == $(this).attr("title")) {
				 $(this).val("");
				 }
		});
});




