$(document).ready(function() {
  $('#home-image a').each(function() {
    $(this).mouseover(function() {
      $(this).find('img').attr('src', '/gfx/home-'+$(this).attr('id')+'-image-over.jpg');
    });
    $(this).mouseout(function() {
      $(this).find('img').attr('src', '/gfx/home-'+$(this).attr('id')+'-image.jpg');
    });
  });
});
