$(document).ready(function() {

  // hover effect
  $(".structure").hover(
    function() {
      $(this).addClass("hover");
    },
    function() {
      $(this).removeClass("hover");
    }
  );

  // hover effect
  $(".diagram").hover(
    function() {
      $(this).addClass("hover");
      $("#diagram0-caption").hide();
      $("#" + $(this).attr("id") + "-caption").show();
    },
    function() {
      $(this).removeClass("hover");
      $("#" + $(this).attr("id") + "-caption").hide();
      $("#diagram0-caption").show();
    }
  );

});