$(document).ready(function(){

    $("div.scrollable").scrollable({
             
        // shows 1 element
        size: 1,
        
        // items are auto-scrolled in 2 secnod interval 
        interval: 5500, 
         
        // when last item is encountered go back to first item 
        loop: true,  
         
        // make animation a little slower than the default 
        speed: 2000,
        
        // make it vertically scrolling
        vertical: true
        
    }); 
    
    
        //  ganzes DIV anklickbar
        //
      	jQuery("div.news-list-item").click(function(){
	  var link = jQuery(this).find("a").attr("href");
      	  window.location = "http://www.uplaenderhof.de/"+link; return false;
      	});
      	


  
});

