$(document).ready(function () {

    var scrollableApi = $('div.scrollable').scrollable({
        size: 6,
        api: true
    });

    scrollableApi.click(0);

    $('.item a').click(function () {
        var key = $(this).attr('rel');
        prepareVideo(key);
        scrollableApi.click(key);
        return false;
    });

});