$(document).ready(function(){
	
	$("body").addClass("javascriptTrue");
	
	/* Pressemitteilungen, scrollbare Liste */
	
	// initialize scrollable 
    
	//$("#teaser_ticker_hp_list").wrap("<div class=\"scrollableListContainer\" />");
	
	if ($('.scrollableListContainer').length > 0) {

		$(".scrollableListContainer").after('<div class="scrollableListContainerActions"><a class="prevPage browse up"></a><a class="nextPage browse down"></a></div>');
		
		$(".scrollableListContainer").scrollable({ 
			vertical:true,  
			size: 1
		// use mousewheel plugin 
		}).mousewheel();
	}

});

