$(document).ready(function() {
   $("#topmenu").find(".rollOver").mouseenter(function() {
     var origimage = $(this).attr("src");
     var sl = origimage.length;
     var newimage = origimage.replace(".gif", "-over.gif");
     $(this).attr("src", newimage);
   }).mouseleave(function() {
     var origimage = $(this).attr("src");
     var sl = origimage.length;
     var newimage = origimage.replace("-over.gif", ".gif");
     $(this).attr("src", newimage);
   });
 });
