// JavaScript Document

// Rollover Menue

$(function() {
  $(".menutabelle img.roll").hover(function() {
    $(this).attr("src", $(this).attr("src").split(".").join("-hover."));
  }, function() {
    $(this).attr("src", $(this).attr("src").split("-hover.").join("."));
  });
});


