// GMI v4.0 JavaScript Map Stuff Document

function hovered (project, type, country) {
	if (document.getElementById) {
		document.getElementById('loc_text').innerHTML = '<h5 class="project">' + project + '</h5><small>' + type + '</small><small><em>' + country + '</em></small>';
	}
	return false;
}
function empty () {
	if (document.getElementById) {
		document.getElementById('loc_text').innerHTML = '';
	}
	return false;
}