///
//
// All public javascript initialization/wireup/loading should start from here (even/especially when defined elsewhere)
//
///
;(function($){   // <-- makes the $ function alias only in this scope.
  $(function(){

    or.utilities.flashbar.autohide();
    or.utilities.lightbox.initializeImageGrid();
    or.utilities.tables.stripe();
    or.forms.newsletter.handleSignup();

  });
})(jQuery);