$(function() {
    $("#menu img").hover(function() {
        $(this).attr("src", $(this).attr("src").split("_off.").join("_on."));
    }, function() {
        $(this).attr("src", $(this).attr("src").split("_on.").join("_off."));
    });
});

