$(document).ready(function(){
	var showWarning = function(message){
		$('body #wrapper #content .registro .warning').remove();
		$('body #wrapper #content .registro form').after('<div class="warning"></div>')
		.parent().find('.warning').hide().html(message).slideDown();
	};
	
	var hideWarning = function(){
		$('body #wrapper #content .registro .warning').slideUp('slow',function(){
			$(this).remove();
		});
	};

	$('body #wrapper #content .registro form').bind('submit',function(){
		if( !$(this).find('#nombre').val().match(/[\w+]{2,}/) ){
			showWarning('El camp Nom no es correcte');
		}else if( !$(this).find('#email').val().match(/[\w-\.]{3,}@([\w-]{2,}\.)*([\w-]{2,}\.)[\w-]{2,4}/) ){
			showWarning('El camp E-mail no es correcte');
		}else if( $(this).find(':checked').length == 0 ){
			showWarning('Has d\'acceptar les condicions de privacitat');
		}else{
			hideWarning();
			return true;
		}
		return false;
	})
})