﻿//featured array
var prospectiveimage = new Array ();

//FILL THIS ARRAY WITH YOUR HOME IMAGE HTML
prospectiveimage[0] = '<img src="/i/featured_prospective/pros_feature_raglon.jpg" alt="National Champs" title="National Champs" />';
prospectiveimage[1] = '<img src="/i/featured_prospective/pros_feature_brown2.jpg" alt="Spurs Internship" title="Spurs Internship" />';
prospectiveimage[2] = '<img src="/i/featured_prospective/pros_feature_cage.jpg" alt="Athletic Trainer" title="Athletic Trainer" />';
prospectiveimage[3] = '<img src="/i/featured_prospective/pros_feature_prisk.jpg" alt="Study Abroad" title="Study Abroad" />';
//homeimage[4] = '';
//ETC




//the script
function init_prospectiveimage () {
	document.getElementById("prospectivestudentsIMG").innerHTML = prospectiveimage[Math.round((prospectiveimage.length - 1)*Math.random())];
}