jQuery(document).ready(function($) {
	$('form.validate').each(function() {
		//if($(this).children('#codeUser').length === 0) {
			$(this).validate();
		/*} else {
			$(this).validate({
				rules: {
					codeUser : {
						remote: {
							url: "/forms/captchaCheck.phtml",
							type: "post",
							data: {
								codeUser: function() {
									return $("#codeUser").val();
								},
								code: function() {
									return $("#code").val();
								}
							}
						}
					}
				}
			});
		}*/
	}); 
});

