コードは次のようなものです:
$(' html body div.wrapper div.middle div.post_home:first-child a ').hover(
function() {
$(' html body div.wrapper div.middle div.post_home:first-child a > img ').attr("src", "http:/site/test1.png");
},
function() {
$('html body div.wrapper div.middle div.post_home:first-child a > img ').attr("src", "currentSrc");
});
変更する前に画像のsrc値を保持する必要があるので、mouseleaveで画像を取得して表示できます。