aExploreToggle = Array();
function toggleExplore(id) {
	// change out the top information		
	obj1 = getObj(aExploreToggle[id]);
	toggleExploreAll();
	
	if (obj1.style.display == 'none') {
		obj1.style.display = 'block';
	} else {
		obj1.style.display = 'none';
	}
	
	// change out the bottom informtation
	obj2 = getObj(aExploreToggle[id] + 'th');
	
	if (obj2.className.indexOf('On') == -1) {
		obj2.className = obj2.className + 'On';
	} else {
		obj2.className = obj2.className.replace('On', '');
	}		
}

function toggleExploreAll() {
	for (j = 0; j < aExploreToggle.length; j++){
		obj = getObj(aExploreToggle[j]);
		
		if (obj != null)
			obj.style.display = 'none';
			
		obj2 = getObj(aExploreToggle[j] + 'th');
		if (obj2 != null)
			obj2.className = obj2.className.replace('On', '');
		
	}
}