﻿jQuery(document).ready(function () {
    $(".scrollable").scrollable({ circular: true });

    $(".imgswap").hover(function () {
        $('#ImageToSwap').attr('src', $(this).attr('src').replace('_thumb', ''));
    });
    
});
