$(document).ready(function() {
	$("#slider").scrollable({
		circular: true,
		speed:1000,
		size:1
	}).navigator().autoscroll({
		autoplay: false,
		interval:3000
	});
	
	$('div.panel-small.ate, div.slide-03').click( function(){
		window.location = '/after-the-event.php';
	});
	
	$('div.panel-small.bte, div.slide-02').click( function(){
		window.location = '/before-the-event.php';
	});
});
 
