$(document).ready(function(){
	var _tips = $('div.map-tooltop');
	
	$('ul.map-list a').each(function(){
		var _pos = $(this).offset();
		var _id = this.href.substr(this.href.indexOf('#'));
		var _timer;
		$(_id).css({
			top:_pos.top-50,
			left:_pos.left
		})
		$(this).mouseenter(function(){
			if (_timer) clearTimeout(_timer);
			_tips.hide();
			$(_id).fadeIn(300);
		}).mouseleave(function(){
			_timer = setTimeout(function(){
				hideTip();
			},300);
		});
		$(_id).mouseenter(function(){
			if (_timer) clearTimeout(_timer);
		}).mouseleave(function(){
			_timer = setTimeout(function(){	hideTip();},100);
		});
		function hideTip(){
			$(_id).hide();
		}
	});
});
