function _GetKantonsLayer(aId, aValue)
{
	if (aValue == 1)
		{
			if (document.getElementById("div" + aId) != null)
				document.getElementById("div" + aId).style.display = "block";
		}
	if (aValue == 0)
		{
			if (document.getElementById("div" + aId) != null)
				document.getElementById("div" + aId).style.display = "none";
		}
}

$(function() {
	$('area').tooltip();
});

// $(function() {
// 	$('area').hover(function() { $(this).addClass('hover'); }, function() { $(this).removeClass('hover') });
// });


