// 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]="Matthew Grieshop";
txtName[txtName.length]="Sandra Marquart-Pyatt";


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_grieshop.jpg\" alt=\"Matthew Grieshop\" hspace=\"10\" vspace=\"10\" align=\"right\">";
txtImg[txtImg.length]="<img src=\"../images/faculty_marquart-pyatt.jpg\" alt=\"Sandra Marquart-Pyatt\" 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]="Matthew Grieshop is the first to admit that many of his research projects in sustainable agriculture are nothing new. “Many of these agricultural practices are things that our great grandparents did,” said Grieshop, an assistant professor of entomology who specializes in organic pest management...";
txtDesc[txtDesc.length]="Sandy Marquart-Pyatt arrives at MSU this fall as part of a hiring cluster in Coupled Human and Natural Systems (CHANS), the study of complex interactions within and among natural and human systems...";


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/grieshop.html\" class=\"bodylink\"><strong>More &raquo;</strong></a></p>";
txtLink[txtLink.length]="<br /><a href=\"/people/faculty/marquart-pyatt.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]);
