(function() {
  var UI;
  UI = (function() {
    function UI() {}
    UI.prototype.DOMReady = function() {
      if (this.Home != null) {
        this.Home.init();
      }
      this.Misc.init();
      if (this.Shop != null) {
        this.Shop.init();
      }
      if (this.Questionnaire != null) {
        this.Questionnaire.init();
      }
      if (this.News != null) {
        this.News.init();
      }
      if (this.Form != null) {
        return this.Form.init();
      }
    };
    UI.prototype.WindowLoad = function() {
      this.Images.init();
      if (this.Home != null) {
        this.Home.Video.init();
      }
      if (this.Section != null) {
        this.Section.init();
      }
      return this.Misc.BoxShadow.init();
    };
    return UI;
  })();
  this.UI = UI = new UI();
  jQuery(document).ready(function() {
    return UI.DOMReady();
  });
  jQuery(window).load(function() {
    return UI.WindowLoad();
  });
}).call(this);

