$(document).ready(function() { 
// main vertical scroll



 $("td.partner img[title]").tooltip({effect: 'slide',tip:'#demotip' }); 



 var vertical=$("#main").scrollable(
 	{ 
 		vertical: true,
 		size: 1,
 		clickable: false,
 		keyboard: 'static',
 		next: '.vertical_next',
 		prev: '.vertical_prev',
 		onSeek: function(event, i)
 			{
 				horizontal.scrollable(i).focus();
 			
 			} }).navigator("#main_navi"); 

 

  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();
  $(".navi").hide();
  
  $(".item").mouseenter(function() 
  	{ 
  		if($(this).find("div.beschreibung").attr('id')!='start_folie')
  		{
  			$(this).find("div.beschreibung").slideDown("fast");
  		}
  		
  	
  	});
  $(".item").mouseleave(function() 
  {
  	if($(this).find("div.beschreibung").attr('id')!='start_folie')
  		{
  		 $(this).find("div.beschreibung").slideUp();
  		}
  	 
  	});
  
  
  $(".page").mouseenter(function() { $(this).find(".navi").fadeIn("fast")});
/*   $(".page").mouseleave(function() { $(this).find(".navi").slideUp()}); */
  
  horizontal.eq(0).scrollable().focus();

  
  



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

  

});

