function ranProfile()
{
	var oProfiles = new Array(
	"<h2>Meet the Staff</h2><p>&ldquo;I was treated to lots of weekend lab visits as a kid with my parents, and science fascinated me at an early age.&rdquo;<br /><a href='meet-the-staff.html#chris'>Learn more about Chris Tompkins</a></p>",
	"<h2>Meet the Staff</h2><p>&ldquo;I really enjoy the people I work with and it’s a great atmosphere and very supportive.&rdquo;<br /><a href='meet-the-staff.html#lydia'>Learn more about Lydia Draxler</a></p>",
	"<h2>Meet the Staff</h2><p>&ldquo;During the week, you can find Aaron Posey in the research labs at VLST. But come the weekend, it’s an entirely different story.&rdquo;<br /><a href='meet-the-staff.html#aaron'>Learn more about Aaron Posey</a></p>"
	);
	var ran = Math.floor(Math.random() * oProfiles.length);
	document.getElementById("ranProfile").innerHTML = oProfiles[ran];
}