$(document).ready(function(){ $( function() { $("img.rollover").hover( function() { this.src = this.src.replace("_Off","_On"); }, function() { this.src = this.src.replace("_On","_Off"); } ); }); });