// On every page, replace the footer image with footer text found on the home page.

$( "#footer" ).empty().load("index.html #footer");

$(".testimonial").hover(  
  function(){  $(this).css("background-color","pink")},
  function(){  $(this).css("background-color","silver")}
)
