function getRanNum(Index)
{
	var num = Math.random();
	num = Math.round((num*100));
	num = num%Index + 1;
	return num;
}
var NumImages = 4;
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(
"tiffany.jpg",
"thomas.jpg",
"monyette.jpg",
"rob_carson.jpg")

featureText = new Array(
"<p>We are excited that you are taking the time to explore the opportunities JMU has to offer. As a student of color, know that JMU is the right place for you to pursue your academic objectives. Every student brings a new and unique perspective to this campus that truly makes us &quot;All Together ONE.&quot;</p> ",
"<p>As of virtue of working in different higher education institutions, I have experienced different campuses, and individuals. From the moment I stepped on JMU’s campus, I have found the campus and its constituents to be friendly and warm (despite the few cold days in the winter time). This student-focus culture is definitely one of the reasons why I wanted to be a part of the JMU community.</p> ",
"<p>Changing the face of the university and the lives of bright and brilliant young leaders of tomorrow, this is my contribution to what I believe is the top university in the Commonwealth.</p>",
"<p>As a former student-athlete and current employee of James Madison University, I can honestly look back and be thankful for the many opportunities the university provided me. The university was very challenging but the outstanding resources provided comfort and made success within arms reach at all times.</p>")

featureLink = new Array(
"http://www.jmu.edu/admissions/multi/messages.shtml",
"http://www.jmu.edu/admissions/multi/messages2.shtml",
"http://www.jmu.edu/admissions/multi/messages4.shtml",
"http://www.jmu.edu/admissions/multi/messages5.shtml"
)

featureAlt = new Array(
"Tiffany Gary, Senior Assistant Director of Admissions.",
"Thomas Lavenir, Assistant Director of International Student and Scholar Services",
"Monyette Martin, Richmond and Norfolk Regional Assistant Director of Admissions.",
"Robert Carson, Academic Counselor")

document.write("<img src ='http://www.jmu.edu/admissions/multi/images/" + featureImage[featureNum-1] + "' border=0 align='left' alt='" + featureAlt[featureNum-1] + "'>");
document.write("" + featureText[featureNum-1] + ""); 
document.write("<p><a href='" + featureLink[featureNum-1] + "'><em><strong>Read More...</strong></em></a></p>");
}
