function getPics2() {
imagePath = "coerootimages/frontpageimages/facultypics/"
imageURL = new Array();
imageURL[0] = imagePath + "floden.jpg"
imageURL[1] = imagePath + "zhao.jpg"
imageURL[2] = imagePath + "gould.jpg"
imageURL[3] = imagePath + "pivarnik.jpg"
imageURL[4] = imagePath + "schmidt.jpg"
imageURL[5] = imagePath + "shakrani.jpg"
imageURL[6] = imagePath + "shakrani.jpg"
imageURL[7] = imagePath + "willson.jpg"
imageURL[8] = imagePath + "Sykes_Trudy2.jpg"
imageURL[9] = imagePath + "schmidt_zhao.jpg"
imageURL[10] = imagePath + "reitu.jpg"
imageURL[11] = imagePath + "pfeiffer.jpg"
imageURL[12] = imagePath + "Hartman.jpg"



podcastURLs = new Array();
podcastURLs[0] = "http://spartanpodcast.com/?p=277"
podcastURLs[1] = "http://www.news.msu.edu/media/video/2009/07/aecbed88-9ca5-4cc9-bcaf-5e9486ea97ad.wmv"
podcastURLs[2] = "http://spartanpodcast.com/?p=386"
podcastURLs[3] = "http://podcast.wkar.msu.edu/sportstalk/090605.mp3"
podcastURLs[4] = "http://news.msu.edu/media/video/2008/12/4770a767-c2cf-4bfc-8728-b5db6317bfc1.wmv"
podcastURLs[5] = "http://www.educ.msu.edu/media/mediafiles/WDET_Shariff.MP3"
podcastURLs[6] = "http://podcast.wwj.com/wwj/1687107.mp3"
podcastURLs[7] = "http://www.educ.msu.edu/media/mediafiles/willson.wmv"
podcastURLs[8] = "http://www.educ.msu.edu/media/mediafiles/Sykes_Trudy_video.wmv"
podcastURLs[9] = "http://www.educ.msu.edu/media/mediafiles/ZhaovsSchmidt.mov"
podcastURLs[10] = "http://www.youtube.com/MichiganStateU#play/user/C6465C22A382E1C5/17/1tyEEfWAQMY"
podcastURLs[11] = "http://news.msu.edu/media/video/2009/08/397dd066-a840-416c-8601-6bcae87aead7.wmv"
podcastURLs[12] = "http://www.educ.msu.edu/media/mediafiles/8-17_Hartman.mp3"


descriptions = new Array();
descriptions[0] = "<a href='" + podcastURLs[0] + "'>University Distinguished Professor Robert Floden</a> discusses the college's research initiatives on the Spartan Podcast."
descriptions[1] = "<a href='" + podcastURLs[1] + "'>Yong Zhao</a> talks about his new book on what's best for American education."
descriptions[2] = "<a href='" + podcastURLs[2] + "'> Dan Gould </a> directs MSU’s Institute for the Study of Youth Sports on MSU's Spartan Podcast."
descriptions[3] = "<a href='" + podcastURLs[3] + "'> James Pivarnik </a> answers questions as new president of the American College of Sports Medicine."
descriptions[4] = "<a href='" + podcastURLs[4] + "'> William Schmidt </a>talks about Minnesota’s impressive increase in TIMSS math scores."
descriptions[5] = "<a href='" + podcastURLs[5] + "'> Sharif Shakrani </a>talks about educational impact of the economic stimulus plan on WDET radio."
descriptions[6] = "<a href='" + podcastURLs[6] + "'> Sharif Shakrani </a>talks about considering teacher effectiveness for certification on WWJ Newsradio."
descriptions[7] = "<a href='" + podcastURLs[7] + "'> Suzanne Wilson, </a>chairperson, talks about the strengths of our teacher education programs."
descriptions[8] = "<a href='" + podcastURLs[8] + "'> Trudy Sykes, </a>secondary team coordinator, talks about the teacher preparation program."
descriptions[9] = "<a href='" + podcastURLs[9] + "'>William Schmidt and Yong Zhao </a>debate the merits of national standards."
descriptions[10] = "<a href='" + podcastURLs[10] + "'>Reitumetse Mabokela </a>explains how MSU is helping to improve teacher education in Pakistan."
descriptions[11] = "<a href='" + podcastURLs[11] + "'>Karin Pfeiffer </a>discusses her research on measuring and increasing kids’ physical activity."
descriptions[12] = "<a href='" + podcastURLs[12] + "'>Doug Hartman</a> talks about the work of the Literacy Achievement Research Center on WILS AM."

var r = Math.round(Math.random() * (imageURL.length - 1));
document.getElementById("pod1Pic").innerHTML = "<img alt='' src=" + imageURL[r] + ">";
document.getElementById("pod1Text").innerHTML = descriptions[r];

do {
  var s = Math.round(Math.random() * (imageURL.length - 1));
 } while (s == r)
document.getElementById("pod2Pic").innerHTML = "<img alt='' src=" + imageURL[s] + ">";
document.getElementById("pod2Text").innerHTML = descriptions[s];
}
