Your IP : 216.73.216.68


Current Path : /home/s/u/n/sunflowe/www2/j15/modules/mod_yoo_gallery/yoo_gallery/
Upload File :
Current File : /home/s/u/n/sunflowe/www2/j15/modules/mod_yoo_gallery/yoo_gallery/gallery.js

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);
				}
			});
		});
	}

});