/*
Require: jQuery & jQuery tools
*/

$(function() {
    // Position the thumbnailContainer properly
    $("#thumbnailContainer").appendTo(".UVG_FreeVideoListContent > div:first-child");

    // Move all the pics to the thumbnailContainer
    $(".UVG_FreeVideoListContent").find(".thumbnail-pic").each(function() {
        $(this).parent().parent().appendTo("#thumbnailContainer #entries");
    });

    // Remove the useless table
    $(".UVG_FreeVideoListContent > div:first-child > table").remove();

    // Make the thumbnails scrollable
    if (jQuery.tools && jQuery.tools.scrollable) {
        $('#thumbnails').scrollable({ size: 4, clickable: false });
    }

    $(".VideoGallery").show();
});