(function($){

	var opt = {
			'san_miguel': 		{ 'top': '7px', 'left': '9px', 'src': '/images/l_sanmiguel.png' },
			'las_palmas': 		{ 'top': '83px', 'left': '101px', 'src': '/images/l_laspalmas.png' },
			'san_sebastion': 	{ 'top': '80px', 'left': '314px', 'src': '/images/l_sansebastion.png' },
			'viareggio': 		{ 'top': '72px', 'left': '482px', 'src': '/images/l_viareggio.png' }
	};
	
	$.fn.locations = function()
	{
		return $(this).each(function(){
			$(this).bind('click', function(){
				if ( $('.map[rel='+$(this).attr('id')+']', $(this).parent()).length > 0  )
				{
					$('.map[rel='+$(this).attr('id')+']', $(this).parent()).show();
				}
				else
				{
					var img = opt[$(this).attr('id')];
					var map = $('<div class="map" rel="'+$(this).attr('id')+'"><img src="'+img.src+'" /></div>');
					$(map).css({'position': 'absolute', 'display': 'none', 'top': img.top, 'left': img.left});
					$(this).parent().append(map);
					if ( $('img', map).ifixpng )
					{
						$('img', map).ifixpng();
					}
					$(map).fadeIn();
					$(map).bind('click', function(){
						$(map).fadeOut();
					});
				}
			});
		})
	}
	
})(jQuery);