function getRanNum(Index)
{
	var num = Math.random();
	num = Math.round((num*100));
	num = num%Index + 1;
	return num;
}
var NumImages = 3;
var agent = navigator.userAgent
var browserVer = 2
if (agent.substring(0,7) == "Mozilla")
{
	if (parseInt(agent.substring(8,9)) >= 3)
		{browserVer = 1;}
}
if (browserVer == 1)
{
	var featureNum = getRanNum(NumImages)
featureImage = new Array(
"yoo-thumb.jpg",
"naseef-thumb.jpg",
"veronica-thumb.jpg")

featureText = new Array(
"<p>Yoo - Korea</p><p>&quot;JMU will become your second home. It is a great place to make the friends that you will always cherish. &quot;</p><p><a href='profiles/yoo.html' class='more'>read more</a></p>",
"<p>Naseef - Bangladesh</p><p>&quot;Before I came here, I was told that I will find the friendliest people at JMU which is so true.&quot;</p><p><a href='profiles/naseef.html' class='more'>read more</a></p>",
"<p>Veronica - Chile</p><p>&quot;JMU provides you with countless unforgettable opportunities and experiences.&quot;</p><p><a href='profiles/veronica.html' class='more'>read more</a></p>")

featureLink = new Array(
"http://www.jmu.edu/admissions/international/profiles/yoo.html",
"http://www.jmu.edu/admissions/international/profiles/naseef.html",
"http://www.jmu.edu/admisisons/international/profiles/veronica.html")

featureAlt = new Array(
"Yoo",
"Naseef",
"Veronica")

document.write("<a href='" + featureLink[featureNum-1] + "'>");
document.write("<img src ='http://www.jmu.edu/admissions/international/images/profiles/" + featureImage[featureNum-1] + "' width='50' height='50' align='left' class='cimage' alt='" + featureAlt[featureNum-1] + "'>"); 
document.write("</a>"); 
document.write("" + featureText[featureNum-1] + ""); 
}
