/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
title="Marshall Lee";
cred="NCAA Trophy winner Hockey .. NCAA National Champ 02-03";
body="Crosstrainers pushed and motivated me - it was sport specific training. I definitely benefited from being apart of the Calgary Crosstrainer team.";
}

if (quotes==1) {
title="Donald G. Reynolds";
cred="President, Uptown Sports Management, Certified NHL Agent";
body="The mission statement at Calgary Crosstrainers shows deep concern for the athlete as a total person. We at Uptown Sports highly endorse their program, and have seen excellent results.";
}

if (quotes==2) {
title="Andrew Lunse";
cred="Slotback U of C Dinos Football";
body="Training with the Calgary Crosstrainers was rewarding physically, mentally and spiritually. It is an exciting and motivating experience to train with people that are fired up about life and the Lord.";
}

if (quotes==3) {
title="Graham Schlender";
cred="Conventry Blaze Elite league - England";
body="Crosstrainers is a natural choice for those athletes looking to make the step to the next level and are looking for a serious program to physically and mentally put them at their best.";
}

if (quotes==4) {
title="Ryan Shantz";
cred="Head coach of the women's soccer pragram at CBC (The Bearcats) & intern assistant coach of TWU";
body="If you are serious about training to reach the next level in your athletic career, I would highly recommend that you sit down with Jon to learn more about their unique approach to athletic training.";
}

if (quotes==5) {
title="Tyler Fraser";
cred="Volleyball";
body="Cross trainers was a great experience for me.  After the summer with Cross-trainers I found myself playing the best volleyball of my career.";
}

document.write('<div align=center>');
document.write('<em>'+ body +'</em><br>');
document.write('<strong><font color="#cc0000">' + title + '</font></strong><br>');
document.write('<em><font color="#ffffff">' + cred + '</font></em>');
document.write('</div>');
