window.addEvent('domready', function(){
	var overlay = new Popup.Overlay();
	var lightbox = new Popup.Lightbox($('Lightbox'), { holder: overlay });
	$$('a[rel^=lightbox]').each(function(a){
		lightbox.add(a.href, a.title);
		a.addEvent('click', function(e){ e.preventDefault(); lightbox.show(this.href, this.title); });
	});
	$$('a[class*=Delete]').each(function(a){
		a.addEvent('click', function(e){ if(!confirm('Are you sure you want to delete?')) e.preventDefault(); });
	});
});
