// JavaScript Document

$(function(){
	/*
	$('.modal_map').hover(
	function(){
		var map = $(this).children('.shop_map');
		if(map.css('display') != 'none'){
			map.hide();
		}
		map.show();
		map.css({
			top:$(this).children('a:first-child').position().top - 20,
			left:$(this).children('a:first-child').position().left - 150,
			visibility: 'visible'
		});
		
	},
	function(){
		$(this).children('.shop_map').hide();
	});
	*/
	$('.modal_map > a').tooltip({ 
	    delay: 0, 
	    showURL: false, 
	    fixPNG : false,
	    bodyHandler: function() {
	    	
	      var open_desc = $('<div id="tooltip_'+Math.floor(Math.random()*100)+'">');
	      var map = $('<iframe scrolling="no" frameborder="0" width="400" height="300" src="'+$(this).attr('href')+'"></iframe>');
	      
	      open_desc.append(map);
	     	
	      return open_desc; 
	    } 
	});
});

function jumpToGM(url){
	window.open(url, '_blank');
	return false;
}
