//function for the mouseover stuff

function fnMouseOver(country,type)
{
	var showDefault = 'visible';
	var showOther = 'hidden';

	if (type == 'over')
	{
		showDefault = 'hidden';
		showOther = 'visible';
	}

	document.getElementById(country+'Map').style.visibility=showOther;
	document.getElementById('defaultMap').style.visibility=showDefault;
	document.getElementById(country+'Map').style.visibility=showOther;
	document.getElementById(country+'Text').style.visibility=showOther;
}

function position(x)
{
	var movie = window.document.homeFlash;
	if(movie.GetVariable('allowButtons') == 'yes')
	{
		movie.SetVariable( "/:pos", x)
	}
}

