// JavaScript Document written by Mark Mulrooney

function countryReveal(country) {
	doSomethingWithClasses("specificCountry");
	var objCountry;
	objCountry=document.getElementById(country);
	objCountry.style.display="block";
}



// From http://www.webmasterworld.com/forum91/1729.htm
//Create an array 
var allPageTags = new Array(); 

// Make all DIVs of one class disappear
function doSomethingWithClasses(theClass) {
	//Populate the array with all the page tags
	var allPageTags=document.getElementsByTagName("*");
	//Cycle through the tags using a for loop
	for (i=0; i<allPageTags.length; i++) {
		//Pick out the tags with our class name
		if (allPageTags[i].className==theClass) {
			//Manipulate this in whatever way you want
			allPageTags[i].style.display='none';
		}
	}
}