$(function() {
	var normal = "/images/footer/normal-state.png";
 	var produce = "/images/footer/dave-produce.png";
	var spike = "/images/footer/spike-kids-corner.png";
	var ohiogrown = "/images/footer/ohio-grown.png";
	var bakery = "/images/footer/bakery.png";
	var fuel = "/images/footer/greasel-fule.png";
	var building = "/images/footer/buehlers-building.png";
	var compost = "/images/footer/compost.png";
	var prime = "/images/footer/prime-beef.png";
	var fish = "/images/footer/fresh-fish.png";
	$("area#produce").hover(
	  function () {
	    $("img.footer-map").attr("src", produce);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	
	$("area#spike").hover(
	  function () {
	    $("img.footer-map").attr("src", spike);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#ohio-grown").hover(
	  function () {
	    $("img.footer-map").attr("src", ohiogrown);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#bakery").hover(
	  function () {
	    $("img.footer-map").attr("src", bakery);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#fuel").hover(
	  function () {
	    $("img.footer-map").attr("src", fuel);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#building").hover(
	  function () {
	    $("img.footer-map").attr("src", building);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#compost").hover(
	  function () {
	    $("img.footer-map").attr("src", compost);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#prime").hover(
	  function () {
	    $("img.footer-map").attr("src", prime);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
	$("area#fish").hover(
	  function () {
	    $("img.footer-map").attr("src", fish);
	  }, 
	  function () {
	    $("img.footer-map").attr("src", normal);
	  });
});
