/*-----------------------------------------------------------------------------------*/

/* Begin Random Rotating top center spotlight image, url, caption script */

/*-----------------------------------------------------------------------------------*/


var thePrograms = new Array(4) 
/* These are the image locations for the rotating register now images */

/* Register 1 Image Location  */
thePrograms[0] = '../images/banner_Christian.jpg'

/* Register 2 Image Location */
thePrograms[1] = '../images/banner_Lynnette.jpg'

/* Register 3 Image Location */
thePrograms[2] = '../images/banner_SarahEnglish.jpg'

/* Register 4 Image Location */
thePrograms[3] = '../images/banner_StephanieWoolbright.jpg'


var cc = 0
var dd = thePrograms.length;


var preBuffer = new Array()
for (i = 0; i < dd; i++){

   preBuffer[i] = new Image()
   preBuffer[i].src = thePrograms[i]

}

var whichPrograms = Math.round(Math.random()*(dd-1));


/************************************************************/

/* These are the captions and url's for the Registration images */

/************************************************************/


if (whichPrograms == 0){ 
/* Criminal Justice URL */
/* var purl = "/spotlight/fall.shtml"; */ 
/* Criminal Justice Caption */ 
var pcaption = "I hope that this scholarship will help others like it has me.";
var psource = "Nancy Christian, Psychology";


}

if (whichPrograms == 1){ 
/* Dual Degrees URL */
/* var purl = "/spotlight/fall.shtml"; */ 
/* Dual Degrees Caption */
var pcaption = "There was always a sense of comfort in knowing that UMUC was going to be there.";
var psource = "Lannette Kelly, Management Studies";


}

if (whichPrograms == 2){ 
/* Dual Degrees URL */
/* var purl = "/spotlight/fall.shtml"; */ 
/* Dual Degrees Caption */
var pcaption = "Everybody is college material; you just have to believe in yourself.";
var psource = "Sarah English, Communication Studies";


}

if (whichPrograms == 3){ 
/* Dual Degrees URL */
/* var purl = "/spotlight/fall.shtml"; */ 
/* Dual Degrees Caption */
var pcaption = "I remember when I received the call, a call that changed my life.";
var psource = "Stephanie Woolbright, Management Studies";
}



function showPrograms(){
document.write('<div id="banner_caption">"'+pcaption+'"</div>');
document.write('<div id="caption_source">'+psource+'</div>');
document.write('<img src="../../advancement/images/'+thePrograms[whichPrograms]+'"alt="'+pcaption+'" />');

}

/*-----------------------------------------------------------------------------------*/

/* End Random Rotating top center spotlight image, url, caption script */

/*-----------------------------------------------------------------------------------*/
