window.addEvent('domready', function() {
	var fx2 = new Fx.Styles($('big'), {wait:false,duration:1500});
	var firstTime=true;
	$$('#ThumbsGallery img').each(function(item){
		var src =item.getProperty('src');
		item.addEvent('click', function(e) {
			new Event(e).stop();
			fx2.cancel();
			fx2.set({'opacity': 0});
			var url= item.getProperty('src').replace('thumbs','ing');
			if(home==1) var href=item.getParent().getProperty('href');
			var desc=item.getProperty('alt');
			new Asset.images(url, {
				onComplete: function() {
					$('big').setProperty('src',url);
					if(home==1) $('big').getParent().setProperty('href',href);
					$('headline').setText(desc);
					fx2.start({'opacity': 1});
				}
			});
		});
	});
});

