$(document).ready(function() {
	$("#box_login .form_button").click(function() {    
		   $("#box_login").validate({ 
			meta: "validate",
			errorElement: "p",
			errorPlacement: function(error, element) {
				error.appendTo( element.parent("div"));
			},
			errorContainer: $("#box_login div.warning"), 
			showErrors: function(errorMap, errorList) {
				//$("#box_login div.warning").html("errore");
				this.defaultShowErrors();
			} 
		   });
		   $("#box_login").submit();
       });
       
});

