$(function(){

    // MouseOver
    $("img").mouseover(function(){

        var img_src = $(this).attr("src");

        if(img_src.match('_n.png')){
            $(this).attr("src", img_src.replace('_n.png', '_r.png'));
        }

    });

    // MouseOut
    $("img").mouseout(function(){

        var img_src = $(this).attr("src");

        if(img_src.match('_r.png')){
            $(this).attr("src", img_src.replace('_r.png', '_n.png'));
        }

    });

});
