jQuery(function() {
  jQuery("#topnav a img, #loginmenu a img").hover(function() {
    jQuery(this).attr("src", jQuery(this).attr("src").split(".gif").join("-hover.gif"));
  }, function() {
    jQuery(this).attr("src", jQuery(this).attr("src").split("-hover.gif").join(".gif"));
  });
});
