mapProp = new MapProperty("areamap", "SMALL", true, true);

// マーカークリックイベントハンドラ
function onMarkerClick()
{
}

// マーカーマウスオーバーイベントハンドラ
function onMarkerMouseOver()
{
	var nodeText	= document.createTextNode(this.strName);

	var nodeBreak	= document.createElement("br");

	var nodeImage	= document.createElement("img");
	nodeImage.setAttribute("src",		this.image.strUrl);
	nodeImage.setAttribute("height",	this.image.iHeight);
	nodeImage.setAttribute("width",		this.image.iWidth);
	nodeImage.setAttribute("alt",		this.strName);
	nodeImage.setAttribute("title",		this.strName);

	var nodeLink	= document.createElement("a");
	nodeLink.setAttribute("href",		this.strUrl);
	nodeLink.appendChild(nodeText);
	nodeLink.appendChild(nodeBreak);
	nodeLink.appendChild(nodeImage);

	var nodeBlock	= document.createElement("div");
	nodeBlock.setAttribute("class",		"balloon");
	nodeBlock.appendChild(nodeLink);

	this.openInfoWindow(nodeBlock);
}
