lastPerson = 'white';

function swap(thisPerson)
{
	
	document.getElementById('big_' + lastPerson).style.display="none";
	document.getElementById('big_' + thisPerson).style.display="block";
	
	
		document.getElementById('small_' + lastPerson).setAttribute('src','/ryanwhiteaction/images/small_' + lastPerson + '.jpg');
	document.getElementById('small_' + thisPerson).setAttribute('src','/ryanwhiteaction/images/small_' + thisPerson + '_active.jpg');
	
	document.getElementById('quote_' + lastPerson).style.display="none";
	document.getElementById('quote_' + thisPerson).style.display="block";
	
	lastPerson = thisPerson;
}

function over(thisPerson)
{
	if (thisPerson != lastPerson) {
		document.getElementById('small_' + thisPerson).setAttribute('src','/ryanwhiteaction/images/small_' + thisPerson + '_active.jpg');
	}
}

function out(thisPerson)
{
	if (thisPerson != lastPerson) {
		document.getElementById('small_' + thisPerson).setAttribute('src','/ryanwhiteaction/images/small_' + thisPerson + '.jpg');
	}
}