	$(function() {
		$('.location').each(function() {
			$(this).data('alt', this.alt).removeAttr('alt');
		}).mouseover(function() {
			$('#description').html($(this).data('alt').replace(/\-\-/g, '<br />'));
			return false;
		});
		$('img').removeAttr('alt').removeAttr('title');
	});
