$(document).ready(function () {
      $(".swap").each(function () { $('<img/>')[0].src = this.src.replace("-normal", "-over"); $(this).hover(function () { this.src = this.src.replace("-normal", "-over"); }, function () { this.src = this.src.replace("-over", "-normal"); }); });
});


