$(document).ready(function() {
    $('#mycarousel').jcarousel({
        // Configuration goes here
    });

    $("#slider_main img").live('mouseover', function() {
        $(this).attr("src", $(this).attr("src").split("_thumb.").join("_thumb-hover."));
    });
    $("#slider_main img").live('mouseout', function() {
        $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
    });

    $("#slider_main a").live('click', function() {
        var movieSource = $(this).children("img").attr("src").split("_thumb-hover.jpg").join(".txt");
        var description = $(this).children("img").attr("alt");

        $("#textdiv").empty().append(description);
        $("#imagediv img").fadeOut("slow").remove();
        $("#imagediv").empty().load(movieSource);
        return false;
    });
});
