
function bios_active(s)
{
	for(var i=0;i<people.length;i++)
	{
		if(s==people[i])
		{
			document.getElementById('bios-thumb-'+people[i]).src = images_active[i];

			var str = '<img class="bios_main_image" src="'+images_big[i]+'" alt=""><h3>'+names[i]+'</h3>';
			if(titles[i]!='&nbsp;') str +='<h4>'+titles[i]+'</h4>';
			if(locations[i]!='&nbsp;') str +='<h5>'+locations[i]+'</h5>';
			document.getElementById('bios-main-div').innerHTML=str + bodies[i];
		}
		else
		{
			document.getElementById('bios-thumb-'+people[i]).src = images_inactive[i];
		}
	}
}