//チャプター詳細表示・非表示

$(function openContents() {
	$('.chapterOpen').each(function(index,node) {
		this.onclick = function() {
			var parent = this.parentNode.parentNode.parentNode.parentNode.parentNode;
			var targetBlock = $(parent).next();
			targetBlock.toggle();
		}
	});
});

//Inquiry Window Open
function inqOpen(eventid, dealerId, type){
	parent.location.href ="http://www.harley-davidson.co.jp/hog/chapter/chapter_Intro/index.php?dealerid=" + dealerId  + "&eventid=" + eventid + "&type=" + type;
}

var propertyId;
$(function() {
	var search = window.location.search;
	var reg = new RegExp(/\&eventid=(\d+)\&type=([a-zA-Z0-9]+)/);
	
	if (search.match(reg))
	{
		eventId = RegExp.$1;
		type = RegExp.$2;
		
		cId = type + eventId;
		
		//$("#open_" + cId).show();
		//$("#chapterDtl_" + cId).attr("src", "http://www.harley-davidson.co.jp/hog/chapter/chapter_Intro/" + type + ".php?eventid=" + eventId);
		
		if (type == "schedule")
		{
			$("#moreBtn1").trigger("click");
		}
		else if (type == "report")
		{
			$("#moreBtn2").trigger("click");
		}
		
		$("#chapterDtl_" + cId + ":first").trigger("click");
		
		location.hash = cId;
	}
});

