window.addEvent('domready', function() {
	
	// thumb enlargement
	
	if ($$('ul.thumbs')) {
		$$('ul.thumbs a').each(function(el) {
			el.addEvent('click', function(ev) {
				ev.stop();
				$$('img.big')[0].set('src',el.href);
				$$('ul.thumbs a').each(function(el) { el.tween('border-color', '#222'); });
				el.tween('border-color', '#666');
		  	});
		});
	}
	
});
