var howMany = 2
var splash = new Array(howMany+1)

splash[0]=" <p><b>&quot;Bruce really became a true partner, producing well thought through recommendations based upon best practices, emerging trends and the needs of our company. He quickly gained the respect and trust of management and the other members of the project team.&quot;</b></p><p align=right>&#151; <i>SVP Human Resources, global construction and real estate development company</i></p> "
splash[1]=" <p><b>&quot;Our sessions have helped me tremendously to focus on what is important to engage me more fully within the organization.&quot;</b></p><p align=right>&#151; <i>Product Manager, global pharmaceutical company</i></p> "
splash[2]=" <p><b>&quot;Bruce, your ability to make the conceptual, pragmatic&#151;and link to their business issues and needs was masterful. Also just being the person you are and truly interested in each of the executives individually and collectively, did really show through. Your orchestrator role was pivotal to our success this week.&quot;</b></p><p align=right>&#151; <i>Managing Director, at leading executive education provider</i></p>"

function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
quo = rndnumber()
quox = splash[quo]
document.write(quox)


