/*
	Thumblight v1.25
	Developed by James King <http://www.devscapes.ca>
*/

if(navigator.appName == "Microsoft Internet Explorer") {
window.addEvent('domready', function() {
	
		$$('.thumblight img').set('opacity', 0.000001);
		$$('.thumblight img').set('tween', {duration: 0.1});
		$$('.thumblight img').addEvents({
			'mouseover': function() {
				this.tween('opacity', 1);
			},
			'mouseout': function() {
				this.tween('opacity', 0.000001);
			}
		});
		
	});
}
else {
window.addEvent('domready', function() {
	
		$$('.thumblight img').set('opacity', 0.000001);
		$$('.thumblight img').set('tween', {duration: 200});
		$$('.thumblight img').addEvents({
			'mouseover': function() {
				this.tween('opacity', .9);
			},
			'mouseout': function() {
				this.tween('opacity', 0.000001);
			}
		});
		
	});
}


