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


	/*
		Spansichere E-Mail-Links
	*/
	var links = $$('span.mail');
	links.each(function(el) {
		var mail = el.get('text').split('[AT]').join('@').split('[DOT]').join('.');
		el.set('html', '<a href="mailto:'+ mail +'">'+ mail +'</a>');
	});


	/*
		Scroll-Effekt
	*/
	var scrollLinks = $$('a.smoothscroll');
	var scrollEffect = new Fx.SmoothScroll(window);
	scrollLinks.each(function(el){
		el.addEvent('click', function(e){
			var target = $$(el.get('href'));
			scrollEffect.toElement(target[0]);
			return false;
		});
	});


});
