var sections = [ "NorthAmerica", "Asia", "Europe", "WorldWide" ];

function showSection(which)
{
	for(var i = 0; i<sections.length; i++) {
		if(which==sections[i])
		{
			document.getElementById(sections[i]).style.display = 'block'
			document.getElementById(sections[i]).style.visibility = "visible";
			currentSelection = which;
		}
		else
		{
			document.getElementById(sections[i]).style.display = 'none'			
			document.getElementById(sections[i]).style.visibility = "hidden";
		}
	}
}

function changeSelection(which)
{
	document.getElementById("mapImage").src='assets/images/distributors/map_' + which + '.gif';
}

function clearHighlight()
{
	document.getElementById("mapImage").src='assets/images/distributors/map_none.gif';	
}
