// Insert the Alt Text here
var alt=new Array()
alt[0]='Leah Shanks';
alt[1]='Joshua Jans';
alt[2]='Ken Pengelly';
// alt[3]='Anne Blackhurst';

// Insert the url of images here
var image=new Array()
image[0]='/gsr/image/leahshanks.jpg';
image[1]='/gsr/image/joshuajans.jpg';
image[2]='/gsr/image/kenpengelly.jpg';
// image[3]='/gsr/image/anneblackhurst.jpg';

// Insert quote here
var quote=new Array()
quote[0]='It&#39;s a historic time for the university, and I feel a strong desire to help make the program successful.';
quote[1]='The support and advice of experts is always helpful. And it&#39;s nice to know that they were once in your shoes.';
quote[2]='I want to motivate people to give back to the university when they feel like they have the resources to do so.';
// quote[3]='As a leading provider of graduate education in the state of Minnesota, we have a legacy of preparing outstanding leaders, artists, scientists, teachers, and health care professionals.';

// Insert the Quotee's Name here
var quotee=new Array()
quotee[0]='Leah Shanks';
quotee[1]='Joshua Jans';
quotee[2]='Ken Pengelly';
// quotee[3]='Anne Blackhurst';

// Insert the Quotee's Title or Status here
var title=new Array()
title[0]='Doctoral Student';
title[1]='Graduate Student';
title[2]='Emeritus Professor';
// title[3]='Dean of Graduate Studies and Research';

// Insert the Read More links here
var article=new Array()
article[0]='<a href="/gsr/developments/spring2008/firstinherclass/">Read More&hellip;</a>';
article[1]='<a href="/gsr/developments/spring2008/takingnationbystorm/">Read More&hellip;</a>';
article[2]='<a href="/gsr/developments/spring2008/lifetimeofgiving/">Read More&hellip;</a>';
// article[3]='<a href="">Read More&hellip;</a>';

var x = Math.floor(Math.random()*alt.length);

if (quotee[x]=="") {
	document.write('<img src="'+image[x]+'" alt="'+alt[x]+'" /><div id="quoteArea"><span class="gsrQuote">'+quote[x]+'</span><br /><span class="gsrQuote">'+article[x]+'</span><br /><br /></div>');
}
else {
	document.write('<img src="'+image[x]+'" alt="'+alt[x]+'" /><div id="quoteArea"><span class="gsrQuote">&quot;'+quote[x]+'&quot;</span><span class="gsrQuoteBy">- '+quotee[x]+'</span><span class="gsrQuoteByTitle">'+title[x]+'</span><br /><span class="gsrQuote">'+article[x]+'</span><br /></div>');
}