$(document).ready(function(){


	$("div.scrollable").scrollable({
		size: 5,
		items: '#thumbs',  
		hoverClass: 'hover',
		clickable: false,
		interval: 10000,
		loop: true
	});
	
	// Center navi
	naviwidth = $('.navi').width();
	marginLeft = parseInt((970-naviwidth)/2);
	$('.navi').css("margin-left",marginLeft+'px');
	
	$('div.scrollable').show();
	
});

	