var api;

$(document).ready(function(){
	$('#slideshow').cycle('fade');
	$("a[rel^='prettyPhoto']").prettyPhoto();
	$("#scrollable").scrollable({ mousewheel: true }).navigator({
        // select #flowtabs to be used as navigator
        navi: "#style_page",
        // select A tags inside the navigator to work as items (not direct children)
        naviItem: 'a',
        // assign "current" class name for the active A tag inside navigator
        activeClass: 'page_selected',
    }); 
	
    api = $(".scrollable").data("scrollable");
	
});

