

$(function() {
    $("img.mouseover-menu-image")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "_mouseover.gif";
          //  if($(this).getAttribute("src") != src) {
                $(this).attr("src", src);
          //  } 
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("_mouseover", "");
            $(this).attr("src", src);
        });
});
