$(document).ready(function(){
   $(".hover").bind("mouseenter",function(){
       this.src=this.src.replace("_off","_over");
   }); 
   $(".hover").bind("mouseleave",function(){
      this.src=this.src.replace("_over","_off");
  });
});