$(function() {
	// タブリンク:予約館
	$("#header .tab_yoyaku a").click(function() {
		return open_window(this.href, {'toolbar':'yes', 'location':'yes', 'directories':'yes', 'status':'yes', 'menubar':'yes'});
	});
	// タブリンク:駆けつけ館
	$("#header .tab_kaketuke a").click(function() {
		return open_window(this.href, {'toolbar':'yes', 'location':'yes', 'directories':'yes', 'status':'yes', 'menubar':'yes'});
	});
	// サブリンク:ポイントについて
//	$("#header #ma_tpoint_enabled a").click(function() {
//		return open_window(this.href);
//	});
	// ログインリンク
	if($('#logout_mes').size() != 0){
		$("#logout_link").click(function() {
			return confirm($('#logout_mes').text());
		});
	}
});