var Site = {
	start: function() {

		
    if($('galHolder')) Site.gallery();
	},


  gallery : function() {
	  var links = $$("a").filter(function(el) { return el.rel; });
	  $$(links).slimbox({counterText: picture+'<b>'+" {x} "+'</b>'+from+'<b>'+" {y}"+'</b>'}, null, function(el) {
		return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel));
	  });
  }
	
	
};
window.addEvent('domready', Site.start);