/*
	MooTools v1.2.4 required
*/

function linkFade(lfDiv) {
	$$(lfDiv).each(function(div) {
		var mouseFxs = new Fx.Tween(div, {duration: 240, wait: false});
		div.set('opacity', 0.85);	//Set the starting opacity
		div.addEvents({
			'mouseover': function(){
				mouseFxs.start('opacity', [0.85, 1]);
			},
			'mouseout': function(){
				mouseFxs.start('opacity', [1, 0.85]);
			}
		});
	});
}


window.addEvent('domready', function(){
	linkFade('.an7_thumb img, .an7_thumb_left img, .an7_thumb_right img, .linkFade');	// (hover) fades links with [selector]
});
