var Site = {
	start: function() {
    Site.euBulGallery();
	},

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