// Enables mouseover on right Panel images to display a block of text in their place

function changePanel(container, turnOff, turnOn)
{
	//Get objects for access
	turnOffObj = document.getElementById(turnOff);
	turnOnObj = document.getElementById(turnOn);
	
	//Switch objects being shown
	turnOffObj.style.display = "none";
	turnOnObj.style.display = "block";
	
	//Switch the panel back to original state when mouse moves off it
	container.onmouseout = function() { changePanel(container, turnOn, turnOff) };
}