// JavaScript Document
function displayFirstDiv(first, second, third)
{
	document.getElementById(first).className = 'selectedtabcontentbox';
	document.getElementById(second).className = 'tabcontentbox';
	document.getElementById(third).className = 'tabcontentbox';	
	document.getElementById("imgPrograms").src = "images/programstabup.jpg";
	document.getElementById("imgSpotlight").src = "images/spotlighttabdown.jpg";
	document.getElementById("imgLocations").src = "images/locationtabdown.jpg";
}

function displaySecondDiv(first, second, third)
{
	document.getElementById(first).className = 'selectedtabcontentbox';
	document.getElementById(second).className = 'tabcontentbox';
	document.getElementById(third).className = 'tabcontentbox';	
	document.getElementById("imgPrograms").src = "images/programstabdown.jpg";
	document.getElementById("imgSpotlight").src = "images/spotlighttabdown.jpg";
	document.getElementById("imgLocations").src = "images/locationtabup.jpg";
}

function displayThirdDiv(first, second, third)
{
	document.getElementById(first).className = 'selectedtabcontentbox';
	document.getElementById(second).className = 'tabcontentbox';
	document.getElementById(third).className = 'tabcontentbox';	
	document.getElementById("imgPrograms").src = "images/programstabdown.jpg";
	document.getElementById("imgSpotlight").src = "images/spotlighttabup.jpg";
	document.getElementById("imgLocations").src = "images/locationtabdown.jpg";
}
