var aQuotes = ["An excellent tool! I found it to be very informative and easy to understand. It is also convenient to be able to come and go, as my phone rings quite often. I would highly recommend this training tool.", "I'm really enjoying these classes. They are set up in a way that are easy to learn. I'm really impressed how much of this relates directly to my job.", "I want to let you know that I'm really enjoying these classes.  They are set up in a way that is very easy to learn.  I'm really impressed how much of this relates directly to my job.", "The online training courses are excellent and should be used by persons even if they have a transportation background and training.  The program is a great way to keep industry aware of the changes that effect new regulations in all the different areas."];
var aNames = ['Terri Cole', 'David Hurt', "Larry David Hurt", "Dave Taylor"];
var aRoles = ['Student', 'Student', "Student", 'Exel Corp.'];

var nRandom = Math.floor (Math.random () * aQuotes.length);
var sQuote = aQuotes[nRandom];
var sName = aNames[nRandom];
var sRole = aRoles[nRandom];

function quoteText () {
	document.write (sQuote);
}
function quoteName () {
	document.write (sName + '<br />' + sRole);
}