$(document).ready(function(){
	$('.spot').hover(function(){
		var id = $(this).attr('id');
		$('#businesses').find('#' + id).addClass('active');
	},
	function(){
		$('#businesses').find('.active').removeClass('active');
	});
	
	$('#businesses a').hover(function(){
		var id = $(this).attr('id');
		position = $('#map').find('#' + id).attr('coords');
		position = position.split(',');
		var x = position[0] - (14);
		var y = position[1] - (14);
		var target = '<div id="target"></div>';
		$('#actions').html(target);
		$('#target').css({top: y + 'px', left: x + 'px'});
	},
	function(){
		$('#target').remove();
	});
});
