quotes = new Array();
names = new Array();

quotes[1] = "On behalf of the Pharmaline team, I would like to congratulate Leading Minds for a very successful Team Building Day event..."
names[1] = "Dr Carol Abi Karam, General Manager, Pharmaline on Team Building Day hosted by Leading Minds"

quotes[2] = "We have many times participated in Leading Minds seminars and courses..."
names[2] = "Antoine Dammous, Deputy General Manager, Pierre Dammous & Partners"

quotes[3] = "PRINCE2 accreditation has proven to be a universal guide to aid professionals in leading successful projects..."
names[3] = "Rachel Mitri, Senior Risk Analyst, BLOM Bank"

quotes[4] = "After experiencing two sessions of Leading Minds at first hand, I can attest to the professionalism of its staff..."
names[4] = "Ramy Ballout – General Manager. Pineland Hotel and Health Resort"

quotes[5] = "Led by Joe Khayat, Leading Minds has been a trusted partner of pearcemayfield for a number of years..."
names[5] = "Patrick Mayfield – Chairman pearcemayfield - London"

quotes[6] = "We have been doing business with Leading Minds for more than 5 years and are constantly impressed by their professionalism and commitment to great learning..."
names[6] = "Lindsay Williams - MD Media Coach International Ltd. - London"

quotes[7] = "I would like to thank the Leading minds for a very enriching training on how to conduct meetings and minute taking..."
names[7] = "Joelle Trade – Alcon Labs - Country Manager"

quotes[8] = "I have been working with Leading Minds since 2004, providing both public and in-house tailored training programmes..."
names[8] = "Peter Dilger – Keystone & Associates"

quotes[9] = "The start - When I arranged to deliver a leadership development workshop in Lebanon for Leading Minds I knew and trusted what I can do..."
names[9] = "John Giblin – Reach Another Level"

quotes[10] = "The BOS training was a flourishing experience, where it matched information, motivation and interactivities..."
names[10] = "Nissrine El Khoury, Quality Manager, Capital Outsourcing SAL"

quotes[11] = "I found the program to be a professionally conducted workshop. The trainer is not only very knowledgeable and experienced in the topic of MBTI..."
names[11] = "Jacqueline Moukheiber, Coach and Trainer"


function randomQuote()
{
	var rand1 = Math.floor(Math.random() * quotes.length);
	quote = quotes[rand1];
	$('#innerQuote').html(quote);
	
	name = names[rand1];
	$('#innerName').html(name);
	setTimeout(randomQuote, 5000);
}

jQuery(document).ready(randomQuote);




