$(document).ready(function(){
    $("#preview").scrollFollow();
    $(".thumb").hover(function(){
        var thumbURL = $(this).attr("src");
        var prevURL = thumbURL.toString().replace("recent_","present_");
        $("#preview").html("<img src=\"" + prevURL + "\" alt=\"harbl\" />");
    })
});
