//RANDOM QUOTES (JAVASCRIPT)
var quoteArray = new Array();
	//QUOTES
	quoteArray[0] = "I came to the Brennan School of Business for an MBA, but decided to stay for a degree in accounting as well. I was inspired by the coursework and by the professors who were great at integrating theoretical concepts with practical applications. I also found great faculty mentors who helped me define my career objectives.";
	

var authorArray = new Array();
	//QUOTES
	authorArray[0] = "Paul Kordik<br />MBA/MSA<br />Financial Analyst<br />Mergers & Acquisitions Group<br />Allstate Insurance Company";

	//END QUOTES

var photoArray = new Array();
	//QUOTES
	photoArray[0] = "";

	//END QUOTES


var total = quoteArray.length;
var rand = Math.round(Math.random() * (total - 1));
var quote = quoteArray[rand];
var photo = photoArray[rand];


if (photo == "") { //IF NO PHOTO, EXPAND TEXT 
	var author = "<div id='testimonial_sansimg'>" + authorArray[rand] + "</div>";
	var photo = '<div class="top">';
} else {
	var author = "<div id='testimonial'>" + authorArray[rand] + "</div>";
	var photo = '<div class="top" style="background-image:url(/export/sites/dominican/_resources/images/learnMore/bsb/' + photoArray[rand] + ')">';
}

