
	$(function() {
		$('.location').mouseover(function(e) {
			var coords = $(this).attr('coords').split(',');
			$('#gunshot_timeline').stop().animate({
				left: parseInt(coords[0]) + 35
			}, 700);		
			$('#description').html($(this).data('alt').replace(/--/g, '<br />'));
			return false;
		}).each(function() {
			$(this).data('alt', this.alt).removeAttr('alt');
		});
	});
