$(document).ready(function() {
  $(".carouselButton").click(function() {
    $(".carouselButton").removeClass("carouselButton_active");
    $(".comicContent").animate({ left: "-" + ($(this).index() * 980) }, 400);
    $(this).addClass("carouselButton_active");
  });

  $(".mosaic img").mousemove(function(e) {
    $(".speech").css("top", e.pageY - 20);
    $(".speech").css("left", e.pageX - 200);
    $("#speech_" + $(this).attr("id")).show();
  });

  $(".mosaic img").mouseleave(function() {
    $(".speech").hide();
  });
});
