window.addEvent('domready', function(){
	var overlay = new Popup.Overlay();
	var lightbox = new Popup.Lightbox({ holder: overlay });
	$$('ul.thumbnails>li>img').each(function(img){
		lightbox.add(img.src, img.title);
		img.addEvent('click', function(event){ event.preventDefault(); lightbox.show(this.src, this.title); });
	});

	$$('#content img.popup').each(function(img){
		img.setStyle('cursor', 'pointer');
		img.addEvent('click', function(event){ event.preventDefault(); lightbox.show(this.src, this.title); });
	});
});
