// JavaScript Document

$(document).ready(function() {
						   
	$(".scrollable").scrollable({circular: true}).autoscroll({ autoplay: false });
	
	$('.show').click(function() {
		$(this).find('.me').fadeIn();
	});
						   
});
