$(document).ready(
	function(){
		var base = $(document).find('head > base').attr('href');
		$("#outer").data("scrollable",$(".scrollable").scrollable({api:true,circular:true,speed:600}));
		$(".scrollable").autoscroll({interval:5000});
		$('.page_control').first().addClass('selected');
		$('#outer').data('scrollable').onBeforeSeek(function(){
			$('.page_control').removeClass('selected');
		});
		$('#outer').data('scrollable').onSeek(function(o,i){
			$('.page_control:eq(' + i + ')').addClass('selected');
		});
		$('.page_control').click(function(e){
			$('#outer').data('scrollable').seekTo( $(this).index() );
			});
		$('.gutterB').css({marginTop:'395px',height:'18px'});
		$('#cta1').click(function(){
			window.location = base + 'about';
			});
		$('#cta2').click(function(){
			window.location = base + 'schedule.html';
			});
		$('.scrollable > .items > .item > img').click(function(){
			window.location = $(this).attr('rel');
			});
		}
	);

