// JavaScript Document
jQuery(function($) {
	
	var mylist = 0;
	$('a.next').hide();
	
	$('.scrollable div.items div').each(function(){
		mylist += 1;
		if(mylist>4) $('a.next').show();
	});
		
	$(".scrollable").scrollable({
		size: 4,
		items: '.items',
		hoverClass: 'hover'
		//navi: '.navi'
	});
	
/*	$('a[rel=fancybox]').fancybox({ 
		'overlayShow'			: false,
				'zoomSpeedIn'			: 700,
				'zoomSpeedOut'			: 1000,
				'zoomOpacity'			: true,
				'easingIn'				: 'easeOutSine'
	});		*/
	
});

