function joke() {
	var map = document.getElementById('map');
	if(map == null || map.childNodes == null || map.childNodes[1] == null) {
		setTimeout('joke()', 500);
		return;
	}
	var span = map.childNodes[1].childNodes[0];
	span.style.visibility = 'hidden';
	//alert(span);
}
