(function() {
  var __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; };
  this.UI.Images = (function() {
    function Images() {}
    Images.init = function() {
      jQuery('.shaded-image:not(.rendered)').each(__bind(function(x, item) {
        this.renderShadow(item);
        return true;
      }, this));
      return this;
    };
    Images.renderShadow = function(item) {
      jQuery(item).addClass("rendered");
      jQuery(item).find('.middle').height(jQuery(item).find('img').height() - 10);
      return this;
    };
    return Images;
  })();
}).call(this);

