<!--//--><![CDATA[//><!--
window.addEvent('domready', function() {

 	$$('.mapItem').each(function(mapItem) {
		mapItem.addEvent('mouseenter', function() { 
			$$('.' + mapItem.get('alt')).addClass('visible');
		});
	   
		mapItem.addEvent('mouseleave', function() { 
			mapItem.getParent().getSiblings().removeClass('visible');
		});
	});
});
//--><!]]>
