function init_photo_scrollable() {
    $(".scrollable").
        scrollable({
            hoverClass: 'hover',
            clickable: false,
            loop: true,
            size : 4
        }).
        mousewheel().
        autoscroll({
            steps: 1,
            interval: 2000
        });
};

function init_video_player() {

    $(".video-link").each(function() {
        var so = new SWFObject('/swf/mediaplayer-viral/player-viral.swf', 'mpl', '461', '351', '9');
        so.addParam('allowfullscreen', 'true');
        so.addParam('allowscriptaccess', 'never');
        so.addParam('wmode', 'opaque');
        var lLien = $(this).attr("href");
        var lLienImage = $(this).attr("alt");
        so.addVariable('file', lLien);
        if (lLienImage != null && lLienImage != '')
            so.addVariable('image', lLienImage);
        so.write($(this).parent()[0]);
    });
}

$(document).ready(function() {
    init_photo_scrollable();
    init_video_player();
});


