var YOOgalleryfx = new Class({

	initialize: function(container){
		var fx = [];

		$(container).getElements('.thumbnail').each(function(el, i) {
			var image = el.getElement('img');
			
			image.setStyle('opacity', 0.3);
			fx[i] = image.effect('opacity',{
				duration: 700, wait: false
			});	
			
			el.addEvents({
				mouseenter: function(event) {
					fx[i].setOptions({ 'duration': 300 });
					fx[i].start(0.3,1);
				},
				mouseleave: function(event) {
					fx[i].setOptions({ 'duration': 700 });
					fx[i].start(1,0.3);
				}
			});
		});
	}

});<!--LiveInternet counter--><script type="text/javascript"><!--
				document.write("<a href='http://www.liveinternet.ru/click' "+
				"target=_blank><img src='http://counter.yadro.ru/hit?t6.9;r"+
				escape(document.referrer)+((typeof(screen)=="undefined")?"":
				";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth?
				screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+
				";"+Math.random()+
				"' alt='' title='LiveInternet: показано число просмотров и"+
				" посетителей за 24 часа' "+
				"border='0' width=1 height=1><\/a>")
				//--></script><!--/LiveInternet-->
