function getRandomFeature()
{
	var man = new Object();
	man.src = "images/man.jpg";
	man.alt = "Risk-free, guaranteed revenue. George spent 35 years building his dental practice. Because of a structured sale, his only worry now is whether to play the front nine or the back nine.";
	man.href = "sales/index.html";

	var woman = new Object();
	woman.src = "images/woman.jpg";
	woman.alt = "Medical treatment for life. A work-related accident left Marianne a paraplegic. Because of a structured settlement, her medical expenses are still being taken care of 8 years later.";
	woman.href = "settlements/index.html";

	var child = new Object();
	child.src = "images/child.jpg";
	child.alt = "A higher payout in the long run. At 4, Trevor was injured by a negligent driver. Because of a Structured Settlement, his future - including a college education - is assured.";
	child.href = "settlements/index.html";

	
	var featureArray = new Array(man, woman, child);
	var index = Math.round(Math.random()*(featureArray.length-1));
	var tag = "<a href='"+featureArray[index].href+"'><img src='"+featureArray[index].src+"' width='462' height='289' alt='"+featureArray[index].alt+"' border='0'></a>";
	document.write(tag);
}
