	function locator(loc)
	{
		switch (loc)
		{
		case 'scott':
			loc2 = "<b><u>Scottsdale, AZ</u></b><br /><i>touchstone gallery</i>";
			map = 'visible';
			break;
		case 'sedona':
			loc2 = "<b><u>Sedona, AZ</u></b><br /><i>touchstone gallery</i>";
			map = 'visible';
			break;
		case 'taos':
			loc2 = "<b><u>Taos, NM</u></b><br /><i>Mineral & Fossil Gallery</i>";
			map = 'visible';
			break;
		case 'santa fe':
			loc2 = "<b><u>Santa Fe, NM</u></b><br /><i>Mineral & Fossil Gallery</i>";
			map = 'visible';
			break;
		case 'abq':
			loc2 = "<b><u>Albuquerque, NM</u></b><br /><i>Corporate Headquarters</i>";
			map = 'visible';
			break;
		case 'aznm':
			loc2 = "<i>Select one of our exciting locations from the map!</i>";
			map = 'visible';
			break;
     	default:
      		map = 'hidden';
		}
			
		document.getElementById("location").innerHTML = loc2;
		document.getElementById("brightmap").style.visibility = map;
		document.onmouseout=function()
		{
			document.getElementById("location").innerHTML = "<i>Select one of our exciting locations from the map!</i>";
			document.getElementById("brightmap").style.visibility = "hidden";
 		}
	}
	
// Thank you to Dwayne Bent for assistance with this javascript
