$().ready(function() {
	$("#search_prod").validate({
		rules: {
			word: { required: true, minlength: 3 }
		}
		});				
});
