jquery를 이용해서 이미지에 마우스를 올렸을때 해당 엘리먼트의 src속성을 변경하는 구문이다.

활용도가 다양하다.

$("selector").hover(function () {
    $(this).attr("src", $(this).attr("src").replace("_off.png", "_on.png"));
}, function () {
    $(this).attr("src", $(this).attr("src").replace("_on.png", "_off.png"));
});