window.addEvent('domready', function(){
	
	$$('a').each(function(el){
		var img = el.getChildren('img');
		if(img.length > 0) {
			el.addEvent('mouseover', function(){
				this.set('opacity', 0.75);
			});
			el.addEvent('mouseout', function(){
				this.set('opacity', 1);
			});
			el.addEvent('focus', function(){
				this.blur();
			});
		}
	});
	
	var pics = [];
	$$('a[class=lightbox]').each(function(el,i){
		var title = el.getChildren('img')[0].getProperty('alt');
		el.setProperty('title', title);
		pics[i] = [el.getProperty('href'), title];
	});
	$$('a[class=lightbox]').each(function(el,i){
		el.addEvent('click', function(e){
			new Event(e).stop();
			Slimbox.open(pics, i);
		});
	});
	
});