//RANDOM QUOTES (JAVASCRIPT)
var quoteArray = new Array();
	//QUOTES
	quoteArray[0] = "Peter Alonzi combines a successful track record of senior corporate positions with solid academic experience. Throughout the 1990s, he served as the senior product manager for the Chicago Board of Trade’s educational programs group. Prior to this position&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#1'> Learn more</a>";
	quoteArray[1] = "David Aron started his professional career in the retail environment, working as marketing director for a regional shopping mall and then as the marketing manager for one of the world's first online shopping environments. His academic research&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#2'> Learn more</a>";
	quoteArray[2] = "Jeff Bell is president of Concordant Industries, an operations-based advisory and investment firm that helps private equity portfolio companies and select Fortune 500 companies implement operations strategies to improve&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#3'> Learn more</a>";
	quoteArray[3] = "Daniel Condon serves as director of the Center for Economic Education at Dominican, which provides economic education programs for local K-12 schools. He also serves as a member of the National Business and Economics Society and the Illinois Economics Association&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#4'> Learn more</a>";
	quoteArray[4] = "Robert Irons’ professional career includes senior financial analyst positions at large firms such as United Airlines, Aetna Insurance and AT&T. He has over ten years of experience as a financial and data analyst, and as many years teaching financial and&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#5'> Learn more</a>";
	quoteArray[5] = "Before joining Dominican University, Khalid Razaki spent 28 years as a member of the faculty at Illinois State University, where he retired as a full professor in 2008. Razaki has won numerous awards for his teaching including the MBA Professor of the Year award&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#6'> Learn more</a>";
	quoteArray[6] = "Al Rosenbloom has a strong interest in exploring how corporate social responsibility, social entrepreneurship and marketing intersect when businesses operate in the least developed countries in the world. He was a 2001 Fulbright professor of marketing management at&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#7'> Learn more</a>";
	quoteArray[7] = "Carol Tallarico’s professional career has focused primarily on research in environmental economics. She co-authored “Cost Effective Control of Urban Smog: The Significance of the Chicago Cap-and-Trade Approach” published in 2006 as part of&hellip;<a href='http://www.dom.edu/events-news/newsroom/faculty_Experts.html#7'> Learn more</a>";

var authorArray = new Array();
	//QUOTES
	authorArray[0] = "L. Peter Alonzi, II<br />Professor of Economics and Finance <br />PhD/MA/BA";
	authorArray[1] = "David Aron<br />Associate Professor of Marketing<br />PhD/MA/BA";
	authorArray[2] = "Jeff Bell<br />Clinical Assistant Professor of Management <br />PhD/M.Eng/BS";
	authorArray[3] = "Daniel Condon<br />Professor of Economics <br />PhD/MA/BA";
	authorArray[4] = "Robert Irons<br />Assistant Professor of Finance <br />PhD/MBA/BS";
	authorArray[5] = "Khalid A. Razaki<br />Professor of Accounting <br />PhD/MAS/MS/MS/BE";
	authorArray[6] = "Al Rosenbloom<br />Associate Professor of Marketing and<br />International Business <br />PhD/MPH/MA/BA";
	authorArray[7] = "Carol D. Tallarico<br />Associate Professor of Economics<br />PhD/MA/BA";
	//END QUOTES

var photoArray = new Array();
	//QUOTES
	photoArray[0] = "blank_alonzi.gif";
	photoArray[1] = "blank_aron.gif";
	photoArray[2] = "";
	photoArray[3] = "blank_condon.gif";
	photoArray[4] = "blank_irons.gif";
	photoArray[5] = "blank_razaki.jpg";
	photoArray[6] = "blank_rosen.jpg";
	photoArray[7] = "blank_tallarico.gif";
	//END QUOTES


var total = quoteArray.length;
var rand = Math.round(Math.random() * (total - 1));
var quote = quoteArray[rand];
var author = authorArray[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/newsroom/' + photoArray[rand] + ')">';
}
