//<![CDATA[
window.addEvents({'domready': function(){
		var Slider = new noobSlide({
			box: $('Slider_items'),
			items: $$('.Slider_element'),
			size: 840,
			fxOptions: {transition: Fx.Transitions.Quad.easeInOut, duration:500, wait:false},
			handles: $$('#Slider_navi a'),
			addButtons: {previous: $('Slider_back'), next: $('Slider_forward') },
			onWalk: function(currentItem,currentHandle){
				this.handles.removeClass('active');
				currentHandle.addClass('active');
			}
		});
		//Interne Sprünge unterbinden
		$$('a.Nav').each(function(link){
			link.href = "#";
		});
		
		//Etxerne Linkbehandlung
		$$('a[rel=blanko]').each(function(link){
			link.target = "_blank";
		});
		
		$$('a').each(function(element,index) {   
			element.set('title', '');   
		}); 
		
		
}});
//]]>
