$(function() {
	$('#candybar-wrapper').serialScroll({
		items:			'li',
		prev:			'html #candybar #toggle-prev',
		next:			'html #candybar #toggle-next',
		duration:		500,
		force:			true,
		interval:		20000,
		constant:		false,
		scroll:			true

	});
			
	$('li.nav-custom').hover(
		function() {
			$(this).find('span.invisible').css('display', 'block');
		},
		function() {
			$(this).find('span.invisible').css('display', 'none');
		}
	);
});