$(function(){
  $(".img-swap").live('click', function() {
    if ($(this).attr("class") == "img-swap") {
      this.src = this.src.replace("_a","_b");
    } else {
      this.src = this.src.replace("_b","_a");
    }
    $(this).toggleClass("on");
  });
});
