$(document).ready(function(){

  $("img", "div.baners").hover(function(){
      this.src = this.src.replace(/Black/,"Color");
    }, function() {
      this.src = this.src.replace(/Color/,"Black");
  })
});
