$(document).ready(function (event) {
    
    $('body.gallery.detail #photo-list a:not(.prev, .next)').bind('click', function (event) {
        var image = $('#gallery-stage img'),
            href  = $(this).attr('href');
        image.attr('src', href);
        return false;
    });
    
    $('#photo-list').scrollable({
        'items': 'ul',
        'size': 4
    });
    
    $('body.gallery.detail #photo-list a.prev, body.gallery.detail #photo-list a.next').bind('click', function (event) {
        return false;
    });
    
});