if (KIOS == undefined) {
	// singleton
	var KIOS = {};
}


KIOS.Gallery = new Class({

	Implements: Options,

	initialize: function(sel) {

		$$(sel).each(function (a) {
			a.addEvent('click', function(e) {e.preventDefault();});
			a.store('tip:title', '');
			a.store('tip:text', '<img src="' + a.get('href') + '" />');
			new Tips({
				showDelay: 200,
				hideDelay: 0
			}).attach(a);
		});
	}
});


window.addEvent('domready', function() {
	KIOS.gal = new KIOS.Gallery('div.foto-pobytu a');
});
