/*
	Thumblight v1.25
	Developed by James King <http://www.devscapes.ca>
*/

window.addEvent('domready', function() {
	
		$$('.thumblight img').set('opacity', 0.65);
		$$('.thumblight img').set('tween', {duration: 300});
		$$('.thumblight img').addEvents({
			'mouseover': function() {
				this.tween('opacity', 1);
			},
			'mouseout': function() {
				this.tween('opacity', 0.65);
			}
		});
		
	});