jQuery(function() {
	var $overlays = jQuery('#map-overlays');
	jQuery('map area').hover(function() {
		var $this = jQuery(this);
		$overlays.find($this.attr('rel')).show();
		console.log(jQuery(this));
	}, function() {
		var $this = jQuery(this);
		$overlays.find($this.attr('rel')).hide();
	});
	
});
