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