$(function() {
	NavSecondary.init();
});

var NavSecondary = { 
	Api: null,
	Navigation: null,
	init: function() {
		var cc = this;
		cc.Navigation = $('#NavSecondary li a');
		cc.Api = $("div.scrollable").scrollable({
			size: 1,
			loop: false,
			api: true,
			clickable: false,
			easing: 'easeInOutQuart',
			speed: 600,
			onSeek: function() {
				var index = this.getPageIndex();
				$(cc.Navigation[index]).addClass('selected');
			},
			onStart: function() {
				cc.Navigation.removeClass('selected');
			}
		}); 
		
		$("div#Lectures ul.tabs").tabs("div#Lectures div.panes > div.item", {current: 'selected'});
		$("div#Exhibitions ul.tabs").tabs("div#Exhibitions div.panes > div.item", {current: 'selected'});
		
		cc.events();
	},
	events: function() {
		var cc = this;
		cc.Navigation.bind('click', function() {
			var index = $(cc.Navigation).index(this);
			cc.Api.seekTo(index);
			return false;
		});
	}
}
