
$(document).ready(function() {
 
    //EXTERNES FENSTER ÖFFNEN 
    $("a[rel='external']").click(function(event){
                window.open($(this).attr("href"));
                event.preventDefault();
            });
     //LIGHTBOX
     $('a[rel*=lightbox]').lightBox();
   
    
    //Tools Slider
     $("#scroller").scrollable(
        {
            circular: true,
            speed:300
        }
     ).autoscroll(
        { 
            autoplay: true, 
            interval: 10000
        }
     );
     
     //Scroll to
     $('#anchor a').click(function(){
		getID = $(this).attr('href');
		$target = $(getID);
		var targetOffset = $target.offset().top;
		$('html,body').animate({scrollTop: targetOffset}, 1000);
		return false;
	})
	
	//Jquerytools overlays
	$("a.overlay[rel]").overlay({
	    fixed:false
	});

  
});











