﻿
$(document).ready(function() {
    $("#navigation li img").hover(
          function() {
              $(this).attr("src", $(this).attr("src").replace(".gif", "_over.gif"));
          },
          function() {
              $(this).attr("src", $(this).attr("src").replace("_over.gif", ".gif"));
          }
        );
          $("#footer img").hover(
          function() {
              $(this).attr("src", $(this).attr("src").replace(".gif", "_over.gif"));
          },
          function() {
              $(this).attr("src", $(this).attr("src").replace("_over.gif", ".gif"));
          }
        );

});