// JavaScript Document
var txtName = new Array()
var txtImg = new Array()
var txtDesc = new Array()
var txtLink = new Array()

txtName[txtName.length]="Nathan Moore";
txtName[txtName.length]="David Kim";
txtName[txtName.length]="Lifeng Luo";
txtName[txtName.length]="Nate Swenson";


txtImg[txtImg.length]="<img src=\"../images/faculty_moore.jpg\" alt=\"Nathan Moore\" hspace=\"10\" vspace=\"10\" align=\"right\">";
txtImg[txtImg.length]="<img src=\"../images/faculty_kim.jpg\" alt=\"David Kim\" hspace=\"10\" vspace=\"10\" align=\"right\">";
txtImg[txtImg.length]="<img src=\"../images/faculty_lifeng.jpg\" alt=\"Lifeng Luo\" hspace=\"10\" vspace=\"10\" align=\"right\">";
txtImg[txtImg.length]="<img src=\"../images/faculty_swenson.jpg\" alt=\"Nate Swenson\" hspace=\"10\" vspace=\"10\" align=\"right\">";

txtDesc[txtDesc.length]="It made sense that Nathan Moore’s recent work in the Brazilian Amazon was funded by NASA.  Moore, an assistant professor in the Department of Geography, minored in astronomy as an undergraduate, has bachelor’s and master’s degrees in physics and is a Star Trek fan.  “I guess you could say TV got me into physics,” he said...";
txtDesc[txtDesc.length]="David Kim’s office looks a bit different from most ESPP affiliates’ work spaces, decorated as it is with pictures of Nietzsche and Foucault, its bookshelves packed with dense European thought.  He is primarily interested in 19th- and 20th-century German-speaking literatures, but says cultural and literary studies provide a useful complement to science and policy research...";
txtDesc[txtDesc.length]="It seems logical that Lifeng Luo would become affiliated with ESPP, a program that stresses interdisciplinary research.  His field of study – hydroclimatology – even <em>sounds</em> interdisciplinary....";
txtDesc[txtDesc.length]="On a bleak winter day in East Lansing, it’s easy to envy Nate Swenson, who in recent years spent nearly half his time in tropical forests...";


txtLink[txtLink.length]="<br /><a href=\"/people/faculty/moore.html\" class=\"bodylink\"><strong>More &raquo;</strong></a></p>";
txtLink[txtLink.length]="<br /><a href=\"/people/faculty/kim.html\" class=\"bodylink\"><strong>More &raquo;</strong></a></p>";
txtLink[txtLink.length]="<br /><a href=\"/people/faculty/lifeng.html\" class=\"bodylink\"><strong>More &raquo;</strong></a></p>";
txtLink[txtLink.length]="<br /><a href=\"/people/faculty/swenson.html\" class=\"bodylink\"><strong>More &raquo;</strong></a></p>";

j=parseInt(Math.random()*txtName.length);
j=(isNaN(j))?0:j;

document.write('<p class="body"><strong>');
//document.write(txtImg[j]);
//document.write('<strong>New Faculty Spotlight:<br>');
document.write(txtName[j]);
document.write('</strong></p>');
document.write('<p class="body">');
document.write(txtDesc[j]);
document.write(txtLink[j]);
