/*  ###########################################################################
    Author:     Dutchcelt.nl
    date:       September 2010
    ########################################################################### */



    $(document).ready(function(){
    
        var lang = $("html").attr('lang')
        if(lang!="en") {
            $.getScript("/scripts/validation/localization/messages_"+lang+".js", function(){
                runValidation();
            });
        } else {runValidation();}
        
        function runValidation(){
            $(':input[name="required[]"]').attr('name',function(index){return "required[" + index + "]"}); 
            $("label span.required").parent().next(":input").addClass("required");
            $("form").each(function(){$(this).validate()}); 
        }
        
        
/*      FUTURE FUNCTIONALITY

        function runInterface(){         
            runValidation();
        }
        runInterface();
*/
    
    });

