(function(c){function b(a,b){this.id=a;this.data=b;this.tmpl=c("#"+this.id+"_tmpl").template();this.currentItem=0}b.prototype.init=function(){var a=this,b=a.context=c("#"+a.id);a.gallery=c(".widget-gallery",a.context);a.showItem(0);a.btnNext=c(".btn-next",b).bind("click",function(){a.showItemNext()});a.btnPrev=c(".btn-prev",b).bind("click",function(){a.showItemPrev()});var d=a.btnNext.add(a.btnPrev).hide();b.hover(function(){d.stop().fadeTo("fast",1)},function(){d.stop().fadeTo("slow",0)})};b.prototype.showItem= function(a){this.gallery.html(c.tmpl(this.tmpl,this.data[a]));this.currentItem=a};b.prototype.showItemNext=function(){this.currentItem++;if(this.currentItem==this.data.length)this.currentItem=0;this.showItem(this.currentItem)};b.prototype.showItemPrev=function(){if(0==this.currentItem)this.currentItem=this.data.length;this.currentItem--;this.showItem(this.currentItem)};window.GalleryTileWidget=b;c(function(){c(window).trigger("GalleryTileWidget.loaded")})})(jQuery);

