$(document).ready(function(){
	
	//****************************
	//吹き出し設定
	//****************************
	$('.route-1').bt({
		cssStyles:{'text-align':'left'},
		trigger: 'hover',//吹き出しを出すイベント
		positions: ['right','left','top','bottom'],//吹き出しの場所
		contentSelector: "$('#box-route1').html()",//吹き出しの中身
		fill: '#FFFFFF',//吹き出しの中の背景色
		width:220,//吹き出しの横幅(px)
		strokeWidth: 3,//吹き出しの枠の太さ(px)
		strokeStyle: '#297CBA',//吹き出しの枠の色
		cornerRadius: 11//吹き出しの角丸の半径
	});
	$('.route-2').bt({
		cssStyles:{'text-align':'left'},
		trigger: 'hover',//吹き出しを出すイベント
		positions: ['right','left','top','bottom'],//吹き出しの場所
		contentSelector: "$('#box-route2').html()",//吹き出しの中身
		fill: '#FFFFFF',//吹き出しの中の背景色
		width:220,//吹き出しの横幅(px)
		strokeWidth: 3,//吹き出しの枠の太さ(px)
		strokeStyle: '#297CBA',//吹き出しの枠の色
		cornerRadius: 11//吹き出しの角丸の半径
	});
	$('.route-2-1').bt({
		cssStyles:{'text-align':'left'},
		trigger: 'hover',//吹き出しを出すイベント
		positions: ['right','left','top','bottom'],//吹き出しの場所
		contentSelector: "$('#box-route2-1').html()",//吹き出しの中身
		fill: '#FFFFFF',//吹き出しの中の背景色
		width:220,//吹き出しの横幅(px)
		strokeWidth: 3,//吹き出しの枠の太さ(px)
		strokeStyle: '#297CBA',//吹き出しの枠の色
		cornerRadius: 11//吹き出しの角丸の半径
	});
	$('.route-3').bt({
		cssStyles:{'text-align':'left'},
		trigger: 'hover',//吹き出しを出すイベント
		positions: ['right','left','top','bottom'],//吹き出しの場所
		contentSelector: "$('#box-route3').html()",//吹き出しの中身
		fill: '#FFFFFF',//吹き出しの中の背景色
		width:220,//吹き出しの横幅(px)
		strokeWidth: 3,//吹き出しの枠の太さ(px)
		strokeStyle: '#297CBA',//吹き出しの枠の色
		cornerRadius: 11//吹き出しの角丸の半径
	});
});
