;(function( $ ){
    $.xs = {
        test : function(){alert('lol');}
    };
})( jQuery );

/**
 *
 * Form validation ideas:
 *  - Store state of all elements to be validated
 *  - Store error messages for elements
 *
 * --- Conditionals ---
 *  - Did the element's state change?
 *      - Yes: Re-validate
 *      - No: Return errors we already have
 *
 *
 */
