Mission: To bind a click even to an area map. Also to try hover to do the same thing.
$("area").click(function () {
theDestination = $(this).attr("href");
alert(theDestination);
});
$("area").hover(function () {
theDestination = $(this).attr("href");
$("#display").attr("value",theDestination);
});