﻿

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

   
  
