window.addEvent('domready', function() {

	$$('#thumbs a').each(function(event){
		event.addEvent('click', function(el){
			el.stop();


			//Variablen holen
			var bild = this.get('href');
			var name = this.get('title');

			$$('#thumbs a').each(function(tete){ tete.set('class','thumb'); });
			this.set('class','thumbon');

			//alert(bild);
			$$('span.title').set('text',name);
			
			//var bigbild = $$('img.big');
			
			//alert(bigbild);
			
			var myFx = new Fx.Tween('superbigbild', {'link':'chain'}); 
			myFx.start('opacity','0').chain(function(){
				$$('img.big').set('src',bild);
				myFx.start('opacity','1.0').chain(function(){
			});

			});
			
		});
	});

});