<!--
function showFeature(foo) {
	var i=new Array();

	if (foo=="pride") {
		i[0]='medicine.png';
		i[1]='chiliforcharity.png';
		i[2]='jamthebus.png';
		i[3]='eve.png';
		i[4]='glennirwin_UA24-002189.png';
		i[5]='chihuly.png';
		i[6]='dayofcaring.png';
		i[7]='tennis.png';
		i[8]='longhospital.png';
		i[9]='outhouse.png';
		i[10]='bepko.png';
		i[11]='david_wolf.png';
		i[12]='lancearmstrong.png';
		i[13]='vonschlegell.png';
	} else if (foo=="spirit") {
		i[0]='cheer.png';
		i[1]='jinx.png';
		i[2]='flagfootball.png';
		i[3]='ronhunter.png';
		i[4]='tennis.png';
	} else if (foo=="tradition") {
		i[0]='eve.png';
		i[1]='chiliforcharity.png';
		i[2]='jamthebus.png';
		i[3]='sagamore.png';
		i[4]='dayofcaring.png';
		i[5]='tennis.png';
		i[6]='jazzfest.png';
	} else {
		i[0]='medicine.png';
		i[1]='chiliforcharity.png';
		i[2]='jamthebus.png';
		i[3]='eve.png';
		i[4]='cheer.png';
		i[5]='jinx.png';
		i[6]='flagfootball.png';
		i[7]='sagamore.png';
		i[8]='glennirwin_UA24-002189.png';
		i[9]='chihuly.png';
		i[10]='ronhunter.png';
		i[11]='dayofcaring.png';
		i[12]='tennis.png';
		i[13]='longhospital.png';
		i[14]='outhouse.png';
		i[15]='bepko.png';
		i[15]='david_wolf.png';
		i[16]='jazzfest.png';
		i[17]='lancearmstrong.png';
		i[18]='vonschlegell.png';
	}
	x=Math.floor(Math.random()*(i.length));
	document.write('<img src="/graphics/spirit/feature/' + i[x] + '" class="feature">');
	}

// Function utilized in maps viewer -- used to toggle legend layer on/off
function legend(name, inner){
if (document.getElementById(name).style.visibility == "visible") {
        document.getElementById(name).style.visibility = "hidden";
        document.getElementById(inner).innerHTML = "View contemporary location names on this photo";
} else {
        document.getElementById(name).style.visibility = "visible";
        document.getElementById(inner).innerHTML = "Hide location names on this photo";
}
}

        function imageSwap(imageSource, filename) {
                document[imageSource].src=filename;
//                document.getElementById(imageSource).src=filename;
        }
-->
