$(document).ready(function() { 


 var vertical=$("#PN_PageNavigator_MAIN").scrollable(
 	{ 
 		vertical: true,
 		size: 1,
 		clickable: false,
 		keyboard: 'static',
 		onSeek: function(event, i)
 			{
 				horizontal.scrollable(i).focus();
 			
 			} }).navigator("#PN_PageNavigator_NaviLeiste"); 

 

  var horizontal = $(".scrollable").scrollable(
  	{size: 1 ,
  	next: '.next',
 	prev: '.prev',
  	
 	onBeforeSeek: function(event, i){} 
	}).navigator('.navi');
   
   
   
  $('.next').click(function(e)
  {
  	 horizontal.eq(0).scrollable().next();
  	 horizontal.scrollable().next();
  	//alert('next');
  });
   
 // $(".item div.beschreibung[id!='start_folie']").hide();
 
  
 // horizontal.eq(0).scrollable().focus();


  



// when page loads setup keyboard focus on the first horzontal scrollable

  

});


