jQuery(function($) {
	$("#hero .slider").scrollable();
	if($('#switchable>.items>div').length > 1) $("#switchable").scrollable({
		next: '.not-next',
		prev: '.not-prev'
	}).navigator();
	
	function fixNavigation() {
		$('#navigation ul').css('width', $('#navigation').width() - 30)
	};
	setInterval(fixNavigation, 1000);
	fixNavigation();
});
