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