$(document).ready(function() {

//	$("#cycle").cycle({
//		fx: "fade"
//	});

//	$("figure.gallery-item a").attr("rel","gallery");
//	$("figure.gallery-item a[rel='gallery']").fancybox();

 
	// initialize scrollable
	$("#browsable").scrollable({ 
		circular: true,
	    speed: 500,
		easing: "swing",
		mousewheel: false 
	}).navigator().autoscroll(6000);
	

// Switch between list and thumb view	
	
	$("a.switch_thumb").toggle(function(){
        $(this).addClass("swap");
        $("ul.display").fadeOut("fast", function() {
            $(this).fadeIn("fast").addClass("thumb_view");
        });
    }, function () {
        $(this).removeClass("swap");
        $("ul.display").fadeOut("fast", function() {
            $(this).fadeIn("fast").removeClass("thumb_view");
        });
    }); 
 

});
