window.addEvent('domready', function() {
	$$('.img_team').addEvents({
		mouseenter: function(){
			var src = this.get('src').substring(0, this.get('src').lastIndexOf('/'))+'/on_'+this.get('src').substr(this.get('src').lastIndexOf('/')+1);
			$('team_info').set('html', $(this.get('alt')).get('html'));
			this.set('src', src);
			
		},
		mouseleave: function(){
			var src = this.get('src').substring(0, this.get('src').lastIndexOf('/'))+'/'+this.get('src').substr(this.get('src').lastIndexOf('/')+4);
			this.set('src', src);
			$('team_info').set('text', 'Fahre mit der Maus über die Bilder für mehr Info.');
		}
	});

});
