$(document).ready(function() {

		// initialize scrollable together with the navigator plugin
		$("#scrollable_showreel").scrollable({
		size: 1, 
		items: ".showreel_items"
		})
		.navigator()
		.autoscroll(9000);
		
		
		// setup ul.tabs to work as tabs for each div directly under div.panes 
		$("ul.tabs").tabs("div.panes > div",{
			initialIndex: 0
		 }); 


}); //end of doc ready





