$(document).ready(function() {
  $(".rolleKasse").hide();

  $(".rolle").mouseover(function() {
    var id =$(this).attr('id');
    $(this).attr('src', $(this).attr('src').replace(id, id + '_mo'));
    $("#" + id + "Kasse").show();
  });

  $(".rolle").mouseout(function() {
    var id = $(this).attr('id');
    $(this).attr('src', $(this).attr('src').replace('_mo', ''));
    $("#" + id + "Kasse").hide();
  });
});