/*	Random Features
	G. Jason Head for the University of Pittsburgh
	11-30-2006
	
	Arrays should be in the order of:
	"ID", "Title", "Text", "Photo Caption"
	(The ID is used in the CSS to send the background image.)
	
*/

var feature = new Array(	
	new Array("highlight-a", "Rachel Carson", "Rachel Carson (1907&#8211;64), of nearby Springdale, Pennsylvania, was instrumental in bringing public attention to the overuse of pesticides such as DDT. Although she spent her career as a mid-level scientist in the US Fish and Wildlife Service, it was her writing&#8212;particularly <em>Silent Spring</em> (1962)&#8212;that led to the ban on DDT in 1972.", "Rachel Carson Collection, Archives, Chatham College"),
	new Array("highlight-b", "Golden Triangle", "When asked how Pittsburgh could be improved, architect Frank Lloyd Wright reportedly said, &ldquo;Abandon it.&rdquo; Luckily, the city&rsquo;s leaders did something else. A unique public-private partnership cleaned the air and revitalized downtown, including the creation of Point State Park at Pittsburgh&rsquo;s Golden Triangle.", "VisitPittsburgh")
);		

var j;
j=parseInt(Math.random()*feature.length);
j=(isNaN(j))?0:j;

var currentFeature = "<div id='front-highlight' class='" + feature[j][0] + "'><h3>Environmental Innovations in Pittsburgh</h3><dl><dt>" + feature[j][1] + "</dt><p>" + feature[j][2] + "</p><p class='footnote'>Photo Credit:" + feature[j][3] + "</p></dd></dl></div>";










