$(document).ready(function() {
	$('#form_news').submit(function (){
		var error=false;
		if($("#breve").val().length<1) error="Devi inserire una descrizione breve.";
		else if($("#annuncio").val().length<1) error="Devi inserire una descrizione completa.";
		else if($("#breve").val().match(/[^@\s]+\@[^@\s]+\.[a-zA-Z0-9]{2,4}/)) error="Non e' permesso inserire indirizzi email o altri recapiti nel testo dell'annuncio.";
		else if($("#annuncio").val().match(/[^@\s]+\@[^@\s]+\.[a-zA-Z0-9]{2,4}/)) error="Non e' permesso inserire indirizzi email o altri recapiti nel testo dell'annuncio.";
		
		if(error) alert(error);
		return !error;
	});
	$('#breve').keyup(function(){
		if($('#breve').val().length>=200) $('#breve').val($('#breve').val().substr(0,200));
	});	
});

