$(document).ready(function() {

// initialize scrollable together with the autoscroll plugin
var root = $("#scroller").scrollable({circular: true, speed: 2000}).autoscroll({ autoplay: true, interval: 12000 });

// provide scrollable API for the action buttons
window.api = root.data("scrollable");

$(".older-item").hide();
$(".older-item-heading").click(function(){
	$(this).next(".older-item").slideToggle("slow");
	$(this).children("a.more").toggle();
})

$("a[rel='fancybox']").fancybox();

$('#tabs, #tabs1, #tabs2').tabs();

});

