/*-----------------------------------------------------------------------------------*/
/* Begin Random Rotating bottom left images */
/*-----------------------------------------------------------------------------------*/


var theQuote = new Array(6) 

/* These are the image locations for the three images */
theQuote[0] = "&#8220;The president, staff, and faculty truly embrace the concept of providing a quality education for every student. I love teaching here and I am proud to be a part of it.&#8221;<br /><br />&ndash; <strong>Bill McCaffrey</strong><br />&nbsp;&nbsp;&nbsp;Adjunct Professor<br />&nbsp;&nbsp;&nbsp;Information Systems Management"
theQuote[1] = "&#8220;[UMUC students are] located all over the world and I love that they bring such a wealth of unique personal, professional, and cultural experiences to our classrooms.&#8221;<br /><br />&ndash; <strong>Patti Wolf</strong><br />&nbsp;&nbsp;&nbsp;Associate Professor<br />&nbsp;&nbsp;&nbsp;Information Systems Management"
theQuote[2] = "&#8220;Our goal is to prepare students to assume environmental managerial positions in industry, governments, consulting, and business firms.&#8221;<br /><br />&ndash; <strong>Dr. Robert Beauchamp</strong><br />&nbsp;&nbsp;&nbsp;Director and Professor<br />&nbsp;&nbsp;&nbsp;Environmental Management<br />&nbsp;&nbsp;&nbsp;and Energy Resources"
theQuote[3] = "&#8220;I was intrigued with the potential of distance education.  I found UMUC where I can combine both my technical background and experience with online delivery&ndash;a perfect fit!&#8221;<br /><br />&ndash; <strong>Dawn Smith</strong><br />&nbsp;&nbsp;&nbsp;Adjunct Professor<br />&nbsp;&nbsp;&nbsp;Computer Information Technology"
theQuote[4] = "&#8220;A global perspective and mutual respect for each other’s beliefs and points of view are central to our success.&#8221;<br /><br />&ndash; <strong>Subash Bijlani</strong><br />&nbsp;&nbsp;&nbsp;Professor of Practice<br />&nbsp;&nbsp;&nbsp;Business and Executive Programs"
theQuote[5] = "&#8220;It was both exciting and attractive to work with some of the leading experts in the field.&#8221;<br /><br />&ndash; <strong>Thomas Huelsmann</strong><br />&nbsp;&nbsp;&nbsp;Program Director and Professor<br />&nbsp;&nbsp;&nbsp;Master of Distance Education"

var cc = 0
var dd = theQuote.length;

var preBuffer = new Array()
for (i = 0; i < dd; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theQuote[i]
}

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

function showQuote(){
document.write(''+theQuote[whichQuote]+'');
}

