$(document).ready(function () {

	$(".scrollable").scrollable({circular: true}).autoscroll({
		interval: 5000
	});

	$(".scrollable a").css('opacity', 0.5);
	
	$(".scrollable a").hover(function() {
		$(this).css('opacity', 1);
	},
	function() {
		$(this).css('opacity', 0.5);
	});

});
