$(document).ready(function(){
    $(".button.order").click(function(){
        $("#products_order_form").submit();
    });
    
    $(".button.order_en").click(function(){
        $("#products_order_form").submit();
    });

    $("#order_form").ready(function(){
        $("#order_form").validate({
            invalidHandler: function(form, validator) {
                validator.showErrors();
                
                $("#order_form").find(":input").each(function(){
                    if ($(this).hasClass("error"))
                    {
                        $(this).effect("highlight", {color:"#ff0000"}, 800);
                    }
                });
            },
            messages: {
                email: {
                    required: "",
                    email: ""
                }
            }
        });
    });
});
