jQuery(function() {
  var centralcomputer = jQuery("#centralcomputer");
  
  jQuery("#pickupservices a")
    .hover(function() {
      jQuery("span", this).show();

      centralcomputer
        .attr("src", centralcomputer.attr("src").replace(".png", "-eye.png"));
    }, function() {
      jQuery("span", this).hide();

      centralcomputer
        .attr("src", centralcomputer.attr("src").replace("-eye.png", ".png"));
    });
});

