// TOP DIRECTORY PATH SEARCH
if(document.domain.indexOf("risonare") > 0 ){
	if(location.href.indexOf("risonare.com/release2/") > 0 ){
		var docRootlng = location.href.split("risonare.com/release2/")[1].split("/");
	}else{
		var docRootlng = location.href.split("risonare.com/")[1].split("/");
	}
}else{
	//var docRootlng = location.href.split("risonare/")[1].split("/");
	var docRootlng = location.href.split("httpdocs/")[1].split("/");
}

var docRoot = "";
	for(var i=0;i<(docRootlng.length)-1;i++){
		docRoot += "../";
	}

//=============================================
// SmartRollOver()
//=============================================
function initRollovers() {
	if (!document.getElementById) return

	var aPreLoad = new Array();
	var sTempSrc;
	var aImages = document.getElementsByTagName('img');

	for (var i = 0; i < aImages.length; i++) {
		if (aImages[i].className == 'ov') {
			var src = aImages[i].getAttribute('src');
			var ftype = src.substring(src.lastIndexOf('.'), src.length);
			var hsrc = src.replace(ftype, '_on'+ftype);

			aImages[i].setAttribute('hsrc', hsrc);

			aPreLoad[i] = new Image();
			aPreLoad[i].src = hsrc;

			aImages[i].onmouseover = function() {
				sTempSrc = this.getAttribute('src');
				this.setAttribute('src', this.getAttribute('hsrc'));
			}	

			aImages[i].onmouseout = function() {
				if (!sTempSrc) sTempSrc = this.getAttribute('src').replace('_on'+ftype, ftype);
				this.setAttribute('src', sTempSrc);
			}
		}
	}
}


//=============================================
// BlWin2()
//=============================================
function BLinks() {
	if (!document.getElementsByTagName) return;

	var anchors = document.getElementsByTagName("a");

	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute("href") &&
		anchor.getAttribute("rel") == "bl")
		anchor.target = "_blank";
	}
}






//=============================================
// init()
//=============================================

function init() {
	curCheck();
	BLinks();
	initRollovers();
}


window.onload=init;


//=============================================
// FC追加スクリプト
//=============================================

//=============================================
// ブロック要素の高さを揃える
//=============================================

/*--------------------------------------------------------------------------*
 *  
 *  heightLine JavaScript Library beta4
 *  
 *  MIT-style license. 
 *  
 *  2007 Kazuma Nishihata 
 *  http://www.webcreativepark.net
 *  
 *--------------------------------------------------------------------------*/
new function(){
	
	function heightLine(){
	
		this.className="heightLine";
		this.parentClassName="heightLineParent"
		reg = new RegExp(this.className+"-([a-zA-Z0-9-_]+)", "i");
		objCN =new Array();
		var objAll = document.getElementsByTagName ? document.getElementsByTagName("*") : document.all;
		for(var i = 0; i < objAll.length; i++) {
			var eltClass = objAll[i].className.split(/¥s+/);
			for(var j = 0; j < eltClass.length; j++) {
				if(eltClass[j] == this.className) {
					if(!objCN["main CN"]) objCN["main CN"] = new Array();
					objCN["main CN"].push(objAll[i]);
					break;
				}else if(eltClass[j] == this.parentClassName){
					if(!objCN["parent CN"]) objCN["parent CN"] = new Array();
					objCN["parent CN"].push(objAll[i]);
					break;
				}else if(eltClass[j].match(reg)){
					var OCN = eltClass[j].match(reg)
					if(!objCN[OCN]) objCN[OCN]=new Array();
					objCN[OCN].push(objAll[i]);
					break;
				}
			}
		}
		
		//check font size
		var e = document.createElement("div");
		var s = document.createTextNode("S");
		e.appendChild(s);
		e.style.visibility="hidden"
		e.style.position="absolute"
		e.style.top="0"
		document.body.appendChild(e);
		var defHeight = e.offsetHeight;
		
		changeBoxSize = function(){
			for(var key in objCN){
				if (objCN.hasOwnProperty(key)) {
					//parent type
					if(key == "parent CN"){
						for(var i=0 ; i<objCN[key].length ; i++){
							var max_height=0;
							var CCN = objCN[key][i].childNodes;
							for(var j=0 ; j<CCN.length ; j++){
								if(CCN[j] && CCN[j].nodeType == 1){
									CCN[j].style.height="auto";
									max_height = max_height>CCN[j].offsetHeight?max_height:CCN[j].offsetHeight;
								}
							}
							for(var j=0 ; j<CCN.length ; j++){
								if(CCN[j].style){
									var stylea = CCN[j].currentStyle || document.defaultView.getComputedStyle(CCN[j], '');
									var newheight = max_height;
									if(stylea.paddingTop)newheight -= stylea.paddingTop.replace("px","");
									if(stylea.paddingBottom)newheight -= stylea.paddingBottom.replace("px","");
									if(stylea.borderTopWidth && stylea.borderTopWidth != "medium")newheight-= stylea.borderTopWidth.replace("px","");
									if(stylea.borderBottomWidth && stylea.borderBottomWidth != "medium")newheight-= stylea.borderBottomWidth.replace("px","");
									CCN[j].style.height =newheight+"px";
								}
							}
						}
					}else{
						var max_height=0;
						for(var i=0 ; i<objCN[key].length ; i++){
							objCN[key][i].style.height="auto";
							max_height = max_height>objCN[key][i].offsetHeight?max_height:objCN[key][i].offsetHeight;
						}
						for(var i=0 ; i<objCN[key].length ; i++){
							if(objCN[key][i].style){
								var stylea = objCN[key][i].currentStyle || document.defaultView.getComputedStyle(objCN[key][i], '');
									var newheight = max_height;
									if(stylea.paddingTop)newheight-= stylea.paddingTop.replace("px","");
									if(stylea.paddingBottom)newheight-= stylea.paddingBottom.replace("px","");
									if(stylea.borderTopWidth && stylea.borderTopWidth != "medium")newheight-= stylea.borderTopWidth.replace("px","")
									if(stylea.borderBottomWidth && stylea.borderBottomWidth != "medium")newheight-= stylea.borderBottomWidth.replace("px","");
									objCN[key][i].style.height =newheight+"px";
							}
						}
					}
				}
			}
		}
		
		checkBoxSize = function(){
			if(defHeight != e.offsetHeight){
				changeBoxSize();
				defHeight= e.offsetHeight;
			}
		}
		changeBoxSize();
		setInterval(checkBoxSize,1000)
		window.onresize=changeBoxSize;
	}
	
	function addEvent(elm,listener,fn){
		try{
			elm.addEventListener(listener,fn,false);
		}catch(e){
			elm.attachEvent("on"+listener,fn);
		}
	}
	addEvent(window,"load",heightLine);
}

//=============================================
// ウィンドウポップアップ
//=============================================


function openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


//=============================================
// 印刷ボタン
//=============================================

function PrintPage(){
	if(document.getElementById || document.layers){
		window.print();
	}
}



//=============================================
// カレントメニューチェック
//=============================================
function curCheck(){	
	var myurl = location.href;
	var val =  myurl.split("/");
		val.pop();
		val = val.join("/");
	if(document.getElementById("gNavi")){var myobjg= document.getElementById("gNavi").getElementsByTagName("ul")[0].getElementsByTagName("a");}
	// GLOBAL MENU の。
	if(myobjg){
		for( var i = 0; i < myobjg.length; i ++ ){
			if( myobjg[i].href.split("index.html")[0].indexOf(val) >= 0 ){
				// ロルオバ。
				myobjg[i].getElementsByTagName("img")[0].src = myobjg[i].getElementsByTagName("img")[0].src.split(".gif").join("_c.gif");
			}else{
				myobjg[i].getElementsByTagName("img")[0].setAttribute("className","ov");
				myobjg[i].getElementsByTagName("img")[0].setAttribute("class","ov");
			}
		}
	}
	if(document.getElementById("header")){var myobjs= document.getElementById("header").getElementsByTagName("a");}
	// SUB MENU の。
	if(myobjs){
		for( var i = 0; i < myobjs.length; i ++ ){
			if( myobjs[i].href.split("index.html")[0].indexOf(val) >= 0 ){
				// ロルオバ。
				myobjs[i].getElementsByTagName("img")[0].src = myobjs[i].getElementsByTagName("img")[0].src.split(".gif").join("_c.gif");
			}else{
				if(myobjs[i].getElementsByTagName("img")[0]){
					myobjs[i].getElementsByTagName("img")[0].setAttribute("className","ov");
					myobjs[i].getElementsByTagName("img")[0].setAttribute("class","ov");
				}
			}
		}
	}
}

//=============================================
// ウィンドウポップアップ(楽しみ方検索用)
//=============================================
function pop2ASearch(p){
	var path = (p) ? p : docRoot + "activity/search.html" ;
	var PopWidth  = ",width=" + 950;
	var PopHeight = ",height=" + 680;
	var PopWinName= "pop";
	var PopDetail = "scrollbars=1,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0" + PopWidth + PopHeight;
	PopWin = window.open(path,PopWinName,PopDetail);
	PopWin.focus();
}


//=============================================
// 共通HEADER書き出し
//=============================================
function setHeader(){
	// HEADER
	var _str = ""
		_str += '<div id="header">';
		_str += '<div class="inner">';
		_str += '<ul>';
		_str += '<li class="hmenu01"><a href="'+docRoot+'about/index.html"><img alt="リゾナーレについて" src="'+docRoot+'common/images/hmenu01.gif" width="87"height="12" /></a></li>';
		_str += '<li class="hmenu03"><a href="'+docRoot+'mice/index.html"><img alt="会議/研修" src="'+docRoot+'common/images/hmenu03.gif" width="59"height="12" /></a></li>';
		_str += '<li class="hmenu04"><a href="'+docRoot+'recommendplan/index.html"><img alt="とっておき" src="'+docRoot+'common/images/hmenu04.gif" width="81" height="12" /></a></li>';
		_str += '<li class="hmenu05"><a href="'+docRoot+'sitemap/index.html"><img alt="サイトマップ" src="'+docRoot+'common/images/hmenu05.gif" width="57" height="12" /></a></li>';
		_str += '<li class="hmenu06"><a href="'+docRoot+'contact/index.html"><img alt="お問い合わせ" src="'+docRoot+'common/images/hmenu06.gif" width="42" height="12" /></a></li>';
		_str += '<li class="hmenu07"><a href="'+docRoot+'access/index.html"><img alt="アクセス" src="'+docRoot+'common/images/hmenu07.gif" width="42" height="12" /></a></li>';
		_str += '<li class="hmenu08"><a href="'+docRoot+'faq/index.html"><img alt="FAQ" src="'+docRoot+'common/images/hmenu08.gif" width="23" height="12" /></a></li>';
		_str += '<li class="hmenu09"><a href="https://room-yoyaku.jp/risonare/login.asp" target="_blank"><img alt="予約確認／変更" src="'+docRoot+'common/images/hmenu09.gif" width="69" height="12" /></a></li>';
		_str += '<li class="hmenu10"><a href="https://room-yoyaku.jp/risonare/search/search_period_top.asp" target="_blank"><img alt="空室確認" src="'+docRoot+'common/images/hmenu10.gif" width="43" height="12" /></a></li>';
		_str += '<li class="hmenu11"><a href="http://www.risonare.com/recommendplan/index.html"><img alt="おすすめ宿泊プラン" src="'+docRoot+'common/images/hmenu11.gif" width="112" height="21" /></a></li>';
		_str += '</ul>';
		_str += '</div>';
		_str += '</div>';
	document.write(_str);

}
//=============================================
// 共通HEADER書き出し（MICE用）
//=============================================
function setHeaderMice(){
	// HEADER
	var _str = ""
		_str += '<div id="header">';
		_str += '<div class="inner">';
		_str += '<ul class="mice">';
		_str += '<li class="hmenu01"><a href="'+docRoot+'about/index.html"><img alt="リゾナーレについて" src="'+docRoot+'common/images/hmenu01.gif" width="87"height="12" /></a></li>';
	　　_str += '<li class="hmenu04"><a href="'+docRoot+'mice/index.html"><img alt="会議/研修" src="'+docRoot+'common/images/hmenu03.gif" width="59"height="12" /></a></li>';
		_str += '<li class="hmenu05"><a href="'+docRoot+'sitemap/index.html"><img alt="サイトマップ" src="'+docRoot+'common/images/hmenu05.gif" width="57" height="12" /></a></li>';
		_str += '<li class="hmenu06"><a href="'+docRoot+'contact/index.html"><img alt="お問い合わせ" src="'+docRoot+'common/images/hmenu06.gif" width="42" height="12" /></a></li>';
		_str += '<li class="hmenu07"><a href="'+docRoot+'access/index.html"><img alt="アクセス" src="'+docRoot+'common/images/hmenu07.gif" width="42" height="12" /></a></li>';
		_str += '<li class="hmenu08"><a href="'+docRoot+'faq/index.html"><img alt="FAQ" src="'+docRoot+'common/images/hmenu08.gif" width="23" height="12" /></a></li>';
		_str += '<li class="hmenu09"><a href="https://room-yoyaku.jp/risonare/login.asp"><img alt="予約確認／変更" src="'+docRoot+'common/images/hmenu09.gif" width="69" height="12" /></a></li>';
		_str += '<li class="hmenu10"><a href="https://room-yoyaku.jp/risonare/search/search_period_top.asp"><img alt="空室確認" src="'+docRoot+'common/images/hmenu10.gif" width="43" height="12" /></a></li>';
		_str += '<li class="hmenu12"><a href="'+docRoot+'mice/mice04.html"><img alt="MICEお問い合わせ" src="'+docRoot+'common/images/hmenu12.gif" width="101" height="24" /></a></li>';
		_str += '</ul>';
		_str += '</div>';
		_str += '</div>';
	document.write(_str);

}
//=============================================
// 共通GlOBALNAVI書き出し
//=============================================
function setGnavi(){
	// GLOBALNAVI
	var _str = ""
		_str += '<div id="gNavi">';
		_str += '<div class="bg"><img alt="RISONARE" src="'+docRoot+'common/images/bg_menushadow.png" width="190" height="327" class="alphafilter" /></div>';
		_str += '<div class="inner">';
		_str += '<ul>';
		_str += '<li class="np"><a href="'+docRoot+'index.html"><img alt="RISONARE" src="'+docRoot+'common/images/gmenu00.gif" width="170" height="61" /></a></li>';
		_str += '<li><a href="'+docRoot+'guestroom/index.html"><img alt="ゲストルーム" src="'+docRoot+'common/images/gmenu01.gif" width="170" height="35" /></a></li>';
		_str += '<li><a href="'+docRoot+'cuisine/index.html"><img alt="レストラン＆カフェ" src="'+docRoot+'common/images/gmenu02.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'poolspa/index.html"><img alt="プール＆リラクゼーション" src="'+docRoot+'common/images/gmenu03.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="http://www.risonare-wedding.com?cid=rnssyuku"><img alt="ウェディング" src="'+docRoot+'common/images/gmenu04.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'shop/index.html"><img alt="ショップ" src="'+docRoot+'common/images/gmenu05.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'activity/index.html"><img alt="アクティビティ" src="'+docRoot+'common/images/gmenu06.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'mice/index.html"><img alt="会議／宴会" src="'+docRoot+'common/images/gmenu07.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="javascript:void(0)" onclick="pop2ASearch();return false"><img alt="楽しみ方検索" src="'+docRoot+'common/images/gmenu08.gif" width="170" height="33" /></a></li>';
		_str += '</ul>';
		_str += '</div>';
		_str += '<p class="btn01"><a href="'+docRoot+'en/index.html"><img alt="ENGLISH" src="'+docRoot+'common/images/btn_english.gif" width="98" height="21" /></a></p>';
		_str += '</div>';
	document.write(_str);

}
//=============================================
// 共通GlOBALNAVI書き出し（MICE-Index用）
//=============================================
function setGnaviMiceIndex(){
	// GLOBALNAVI
	var _str = ""
		_str += '<div id="gNavi">';
		_str += '<div class="bg"><img alt="RISONARE" src="'+docRoot+'common/images/bg_menushadow.png" width="190" height="327" class="alphafilter" /></div>';
		_str += '<div class="inner">';
		_str += '<ul>';
		_str += '<li class="np"><a href="'+docRoot+'index.html"><img alt="RISONARE" src="'+docRoot+'common/images/gmenu00.gif" width="170" height="61" /></a></li>';
		_str += '<li><a href="'+docRoot+'guestroom/index.html"><img alt="ゲストルーム" src="'+docRoot+'common/images/gmenu01.gif" width="170" height="35" /></a></li>';
		_str += '<li><a href="'+docRoot+'cuisine/index.html"><img alt="レストラン＆カフェ" src="'+docRoot+'common/images/gmenu02.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'poolspa/index.html"><img alt="プール＆リラクゼーション" src="'+docRoot+'common/images/gmenu03.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="http://www.risonare-wedding.com?cid=rnssyuku"><img alt="ウェディング" src="'+docRoot+'common/images/gmenu04.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'shop/index.html"><img alt="ショップ" src="'+docRoot+'common/images/gmenu05.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'activity/index.html"><img alt="アクティビティ" src="'+docRoot+'common/images/gmenu06.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="'+docRoot+'mice/index.html"><img alt="会議／宴会" src="'+docRoot+'common/images/gmenu07.gif" width="170" height="33" /></a></li>';
		_str += '<li><a href="javascript:void(0)" onclick="pop2ASearch();return false"><img alt="楽しみ方検索" src="'+docRoot+'common/images/gmenu08.gif" width="170" height="33" /></a></li>';
		_str += '</ul>';
		_str += '</div>';
		_str += '</div>';
	document.write(_str);

}
//=============================================
// 共通GlOBALNAVI書き出し（MICE用01）
//=============================================
function setGnaviMice01(){
	// GLOBALNAVI
	var _str = ""
		_str += '<div id="gNaviMice01">';
		_str += '<div class="bg"><img alt="RISONARE" src="'+docRoot+'common/images/bg_menushadow_mice.png" width="190" height="61" class="alphafilter" /></div>';
		_str += '<div class="inner">';
		_str += '<ul>';
		_str += '<li><a href="'+docRoot+'index.html"><img alt="RISONARE" src="'+docRoot+'common/images/gmenu00.gif" width="170" height="61" /></a></li>';
		_str += '</ul>';
		_str += '</ul>';
		_str += '</div>';
		_str += '</div>';
	document.write(_str);

}
//=============================================
// 共通GlOBALNAVI書き出し（MICE用02）
//=============================================
function setGnaviMice02(){
	// GLOBALNAVI
	var _str = ""
		_str += '<div id="gNaviMice02">';
		_str += '<div class="inner">';
		_str += '<ul>';
		_str += '<li><a href="'+docRoot+'guestroom/index.html"><img alt="ゲストルーム" src="'+docRoot+'common/images/gmenu_mice01.gif" width="133" height="38" class="ov" /></a></li>';
		_str += '<li><a href="'+docRoot+'cuisine/index.html"><img alt="レストラン＆カフェ" src="'+docRoot+'common/images/gmenu_mice02.gif" width="133" height="38" class="ov" /></a></li>';
		_str += '<li><a href="'+docRoot+'poolspa/index.html"><img alt="プール＆リラクゼーション" src="'+docRoot+'common/images/gmenu_mice03.gif" width="133" height="38" class="ov" /></a></li>';
		_str += '<li><a href="http://www.risonare-wedding.com?cid=rnssyuku" src="'+docRoot+'common/images/gmenu_mice04.gif" width="133" height="38" class="ov" /></a></li>';
		_str += '<li><a href="'+docRoot+'shop/index.html"><img alt="ショップ" src="'+docRoot+'common/images/gmenu_mice05.gif" width="133" height="38" class="ov" /></a></li>';
		_str += '<li><a href="'+docRoot+'activity/index.html"><img alt="アクティビティ" src="'+docRoot+'common/images/gmenu_mice06.gif" width="133" height="38" class="ov" /></a></li>';
		_str += '<li><a href="'+docRoot+'mice/index.html"><img alt="会議／宴会" src="'+docRoot+'common/images/gmenu_mice07_c.gif" width="132" height="38" /></a></li>';
		_str += '</ul>';
		_str += '</div>';
		_str += '</div>';
	document.write(_str);

}
//=============================================
// 共通RESERVATION書き出し
//=============================================
function setReservation(){
	// RESERVATION
	var _str = ""
		_str += '<div id="reservationArea">';
		_str += '<dl>';
		_str += '<dt><a href="'+docRoot+'recommendplan/index.html"><img alt="ご予約・空室照会" src="'+docRoot+'common/images/btn_bottom_reserve01.gif" width="190" height="57" /></a></dt>';
		_str += '<dd class="txt"><img alt="0551-36-5111 宿泊予約はお電話でも承っております。" src="'+docRoot+'common/images/btn_bottom_reserve02.gif" width="312" height="20" /></dd>';
		_str += '<dd class="contact"><a href="'+docRoot+'contact/index.html"><img alt="お問い合わせはこちらから" src="'+docRoot+'common/images/btn_bottom_reserve05.gif" width="149" height="25" /></a></dd>';
		_str += '<dd class="btn4"><a href="http://www.hoshinoresort.com/"><img alt="HOSHINO RESORT" src="'+docRoot+'common/images/btn_bottom_reserve09.gif" width="150" height="23" /></a></dd>';
		_str += '<dd class="btn5"><a href="'+docRoot+'privacy/index.html"><img alt="プライバシーポリシー" src="'+docRoot+'common/images/btn_bottom_reserve03.gif" width="125" height="16" /></a></dd>';
		_str += '</dl>';
		_str += '</div>';
		_str += '<div class="space0px"></div>';
	document.write(_str);

	// Twitter
	//document.write(unescape("%3Cscript src='http://files.go2web20.net/twitterbadge/1.0/badge.js' type='text/javascript'%3E%3C/script%3E"));
	document.write(unescape("%3Cscript src='"+ docRoot +"common/js/badge.js' type='text/javascript'%3E%3C/script%3E"));

}
//=============================================
// 共通RESERVATION書き出し（MICE用）
//=============================================
function setReservationMice(){
	// RESERVATION
	var _str = ""
		_str += '<div id="reservationArea">';
		_str += '<dl>';
		_str += '<dt><a href="'+docRoot+'mice/mice04.html"><img alt="MICEお問い合わせ" src="'+docRoot+'common/images/btn_bottom_reserve06.gif" width="190" height="57" /></a></dt>';
		_str += '<dd class="txt"><img alt="ご予約・お問い合わせは、MICE専用ダイヤルにて承ります。 0551-36-5203" src="'+docRoot+'common/images/btn_bottom_reserve07.gif" width="404" height="20" /></dd>';
		_str += '<dd class="contact2"><a href="mailto:info-mice@risonare.com"><img alt="info-mice@risonare.com" src="'+docRoot+'common/images/btn_bottom_reserve08.gif" width="197" height="20" /></a></dd>';
		_str += '<dd class="btn3"><a href="'+docRoot+'privacy/index.html"><img alt="プライバシーポリシー" src="'+docRoot+'common/images/btn_bottom_reserve03.gif" width="125" height="16" /></a></dd>';
		_str += '</dl>';
		_str += '</div>';
		_str += '<div class="space0px"></div>';
	document.write(_str);

	// Twitter
	//document.write(unescape("%3Cscript src='http://files.go2web20.net/twitterbadge/1.0/badge.js' type='text/javascript'%3E%3C/script%3E"));
	document.write(unescape("%3Cscript src='"+ docRoot +"common/js/badge.js' type='text/javascript'%3E%3C/script%3E"));

}
//=============================================
// 共通FOOTER書き出し
//=============================================
function setFooter(){
	// FOOTER
	var _str = ""
		_str += '<div id="footer">';
		_str += '<ul>';
		_str += '<li class="np"><a href="javascript:void(0)" onclick="pop2ASearch();return false">楽しみ方検索</a></li>';
		_str += '<li><a href="'+docRoot+'guestroom/index.html">ゲストルーム</a></li>';
		_str += '<li><a href="'+docRoot+'cuisine/index.html">レストラン＆カフェ</a></li>';
		_str += '<li><a href="'+docRoot+'poolspa/index.html">プール＆リラクゼーション</a></li>';
		_str += '<li><a href="http://www.risonare-wedding.com?cid=rnssyuku">ウェディング</a></li>';
		_str += '<li><a href="'+docRoot+'shop/index.html">ショップ</a></li>';
		_str += '<li><a href="'+docRoot+'activity/index.html">アクティビティ</a></li>';
		_str += '<!--<li><a href="'+docRoot+'howtospend/index.html">リゾナーレの過ごし方</a></li>-->';
		_str += '</ul>';
		_str += '<ul>';
		_str += '<li class="np"><a href="'+docRoot+'about/index.html">リゾナーレについて</a></li>';
		_str += '<li><a href="'+docRoot+'mice/index.html">会議／宴会</a></li>';
		_str += '<li><a href="'+docRoot+'recommendplan/index.html">とっておき</a></li>';
		_str += '<li><a href="'+docRoot+'sitemap/index.html">サイトマップ</a></li>';
		_str += '<li><a href="'+docRoot+'contact/index.html">お問い合わせ</a></li>';
		_str += '<li><a href="'+docRoot+'access/index.html">アクセス</a></li>';
		_str += '<li><a href="'+docRoot+'faq/index.html">FAQ</a></li>';
		_str += '<li><a href="https://room-yoyaku.jp/risonare/login.asp">予約確認／変更</a></li>';
		_str += '<li><a href="https://room-yoyaku.jp/risonare/search/search_period_top.asp">空室確認</a></li>';
		_str += '<li><a href="'+docRoot+'recommendplan/index.html">おすすめ宿泊プラン</a></li>';
		_str += '</ul>';
		_str += '<p><img alt="Copyright(C)2008 risonare All Right Reserved." src="'+docRoot+'common/images/copyrights.gif" width="234" height="10" /></p>';
		_str += '</div>';
	document.write(_str);

	// GA WRITE
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
	
	// 
	document.write(unescape("%3Cscript src='" + docRoot + "common/js/ga_1.js' type='text/javascript'%3E%3C/script%3E"));

	// Twitter
	document.write(unescape("%3Cscript type='text/javascript' charset='utf-8'%3E%3C%21--"));
	document.write("\n");
	document.write('tfb.account = "Risonare";'+"\n");
	document.write('tfb.label = "My twitter";'+"\n");
	document.write('tfb.color = "##35CCFF";'+"\n");
	document.write('tfb.side = "r";'+"\n");
	document.write('tfb.top = 500;'+"\n");
	document.write('tfb.showbadge();'+"\n");
	document.write(unescape("--%3E%3C/script%3E"));

}

