NormalMenuItemHandlerWithHosokuAndHanrei=function(){
	this.wrapped = new NormalMenuItemHandlerWithHosoku();
}
NormalMenuItemHandlerWithHosokuAndHanrei.prototype.fireMenuItemSelected=function(selectedItem){
	this.wrapped.fireMenuItemSelected(selectedItem);
	var subMenuDiv = document.getElementById("subMenuDiv");
	subMenuDiv.style.top="0px";
	subMenuDiv.style.left="0px";
	var div = document.createElement("div");
	div.style.position = "absolute";
	div.style.left = "600px";
	div.style.top = "55px";
	subMenuDiv.appendChild(div);
	div.style.marginTop = "10px";
	var btn = document.createElement("button");
	div.appendChild(btn);
	btn.style.height="25px";
	btn.style.verticalAlign = "middle";
	btn.style.textAlign="center";
	btn.style.margin = "1px";
	btn.style.fontSize="14px";
	btn.appendChild(document.createTextNode("地図の凡例"));
	
	var showHanrei = function(){
		window.open("hanrei.html","hanrei","width=550, height=500, menubar=no, toolbar=no, scrollbars=yes,resizable=yes");
	}
	btn.onclick = showHanrei;
	
}
NormalMenuItemHandlerWithHosokuAndHanrei.prototype.fireTopMenuItemSelected=function(selectedItem){
	this.wrapped.fireTopMenuItemSelected(selectedItem);
}