document.observe('dom:loaded', function() {
	$$('area').each(function(o) {
		o.observe('click', function(e) {
			e.stop();
			propinfo(o.href);
		});
	});
});