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

