$(document).ready( function() {
  $('#karusell').cycle({ 
  	fx: 		'fade', 
  	speed: 		500, 
  	timeout: 	8000,
	easingIn: 'easeOutBounce',
	easingOut: 'easeInBack',
  	pause: 		1,
  	random: 	1,
  	pager: 		'.nav' 
  });
  $('.splitView ul li').hover(
	function() { $('ul.splitInfo', this).show(100); },
	function() { $('ul.splitInfo', this).hide(100); 
  });
});



