/* 
	Creates a wee tooltip thingy using alt attribute of area
	Copyright © 17 August 2011 Jake Nicholson (www.eskdale.net)
*/

(function($){$.fn.annotateTHIS=function(){$('map').append('<div id="annotation"><p></p></div>');$('#annotation').hide();var title;var widf;var x;var y;$('area').css('cursor','none');$('area').hover(function(f){title=$(this).attr('alt');$(this).attr('alt','');$('#annotation p').text(title);widf=$('#annotation p').width();$('#annotation').stop(true,true).fadeIn(200);},function(){$(this).attr('alt',title);});$('map').hover(function(){},function(){$('#annotation').stop(true,true).fadeOut(200);});$('body').mousemove(function(e){widf=$('#annotation p').width();x=e.pageX-(widf/2)-5;y=e.pageY-26;$('#annotation').css({'top':y+'px','left':x+'px'});});};})(jQuery);
