jQuery(document).ready(function() {
    // scrollable list
        $(".scrollable").scrollable({
            size: 1,
            items: '.items'
        });


    if( $("a[rel^='prettyPhoto']").length ) {
         $("a[rel^='prettyPhoto']").prettyPhoto({theme: 'dark_rounded', opacity: 0.8});
    }


    $(".gal_selection, .gal_return, .tabs a").click(function() {
        $('.scrollable').fadeOut("fast");
    })
    $(".pane *").hide().fadeIn("fast");

    $(".gal_selection img").each( function() {
        $(this).rotate( Math.random()*30 - 15 );
    });
});