var docLoaded = false;

$(document).ready(function() {
	docLoaded = true;
});

// javascript gets url and sends it to flash country
function sendIDtoFlash(id) {
	if (docLoaded) {
		$("#" + id).each(function() {
			document.location = this.href;
		});
	}
}

// html link lights up the flash country
function asMouseOver(id){
	if (docLoaded) {
		swfobject.getObjectById("mapcontent").textMouseOver(id);
	}
}
function asMouseOut(id) {
	if (docLoaded) {
		swfobject.getObjectById("mapcontent").textMouseOut(id);
	}
}

// flash country lights up html link
function countryMouseOver(id) {
	if (docLoaded) {
		$("#" + id).addClass('flashOver');
	}
}

function countryMouseOut(id) {
	if (docLoaded) {
		$("#" + id).removeClass('flashOver');
	}
}

function HideHTMLMap()
{
    //document.getElementById('HTMLMap').style.display = 'none';
}