	$(document).ready(function(){
		$("area").hover(function(){
			var id = $(this).attr("class");
			$(".imap").css('background', "url('/newmap/map/" + id + ".png') no-repeat");
      $(".tooltip").stop(true, true).hide().append('<img src="/newmap/assets/' + id + '.jpg">').fadeIn('fast')
		}, function() {
			$('.tooltip').stop(true, true).fadeOut('fast');
			$(".imap").css('background', 'none');
      $(".tooltip").find("img:last").remove();
		});
	});

