﻿
/*-------------------------------------------------------------------
人気ランキングからホテルを選ぶ
-------------------------------------------------------------------*/
$(document).ready(function(){
	$("#nhr li").eq(4).addClass("hidden");
	$("#nhr .hidden ~ li").hide();
	$("#nhr .showBtn a").toggle(
		function () {
			$("#nhr .hidden ~ li").show();
			$("#nhr .showBtn a").removeClass("open").addClass("close").text("閉じる");
		},
		function () {
			$("#nhr .hidden ~ li").hide();
			$("#nhr .showBtn a").removeClass("close").addClass("open").text("もっと見る");
		}
	);
	return false;
});



/*-------------------------------------------------------------------
グレードからホテルを選ぶ
-------------------------------------------------------------------*/
$(document).ready(function(){
	$("#sHName dd").hide();
	$("#sHName dt").click(function(){
		if($(this).nextUntil("dt").is(":hidden")){
			//$("#sHName dt").removeClass("on").nextUntil("dt").hide(); 
			$(this).addClass("on").nextUntil("dt").show();
		}
		else{
			$(this).removeClass("on").nextUntil("dt").hide();
		}
	});
});
