$(function(){
    $('img.rollover').each(function () {
        $(this).hover(function () {
            this.setAttribute("src", this.getAttribute("src").replace("_out", "_over"));
        }, function() {
            this.setAttribute("src", this.getAttribute("src").replace("_over", "_out"));
        });
    });
});

