$(document).ready( function() {
	$('#markers li').bind('mouseover', function() {
		$(window).stopTime('close_bubble');
		mapShowBubble( this );
	} );
	$('#markers li').bind('mouseout', function() {
		$(window).oneTime('1s', 'close_bubble', function() {
			mapShowBubble('');
		});
	} );
	$('#map_data li').bind('mouseover', function() {
		$(window).stopTime('close_bubble');
	} );
	$('#map_data li').bind('mouseout', function() {
		$(window).oneTime(10, 'close_bubble', function() {
			mapShowBubble('');
		});
	});

} );

function mapShowBubble(marker) {
	var map_id = (marker)
		? $(marker).attr('id').replace(/point_/, '')
		: null;
	$('#map_data li').each(function() {
		if( $(this).attr('id').replace(/map_data_/,'') == map_id ) {
			$(this).fadeIn();
		}
		else if( $(this).css('opacity') > 0 ) {
			$(this).fadeOut();
		}
	});
}

