$(document).ready(function(){
	// Validazione email
	$('form').submit(function(e){
		//console.log("submit")
		//console.log($(this).find('input.obbligatorio'));
		obb = $(this).find('input.obbligatorio');
		//alert("lenght: "+obb.length);
		if (obb.length > 0){
			///console.log("obb "+obb);
			val = obb.val();
			//console.log("val "+val);
			app = val.match(/[a-zA-Z0-9_-]+\@[a-zA-Z0-9_-]+\.[a-zA-Z]+/);
			
			if (app != null){
				// Ok
				var dis = parseInt($('#is_form_disabled').val())!=0 ? true : false;
				if($('#c_ko').attr('checked')){
					e.preventDefault();
					OpenLightbox(privacyMsg, false);
				}
				$(this).append("<input type='hidden' name='form_token' value='t0k3n' />");
				return true;
				//e.preventDefault();
			}
			else{
				//console.log("return- 0");
				obb.addClass("highlight");
				obb.focus();
				e.preventDefault();
			}
		}
	})
	
});
