//store the quotations in arrays
quotes = new Array(20);
authors = new Array(20);
quotes[0] = "RunnersWeb.com is your definitive Daily News for runners. A day without it is like a day without your run!";
authors[0] = "Alan Brookes, Race Director, ScotiaBank Toronto Waterfront Marathon & Canada Running ";
quotes[1] = "The Runner's Web is my all time favorite site, the first one I go to everyday.";
authors[1] = "Siri Lindley, World Champion Triathlete and Coach";
quotes[2] = "You are doing a tremendous job to promote running and triathlon and I truly think you are making a difference in the athletic community. Thank you and keep it up.";
authors[2] = "Nicole Stevenson , Canadian 2:32 Marathoner";
quotes[3] = "Keep up the amazing work with RunnersWeb.com, awesome, thanks for keeping me updated.";
authors[3] = "Simon Whitfield, 2000 Olympic Triathlon champion ";
quotes[4] = "I'm a big fan of your RunnersWeb.com site.";
authors[4] = "Amby Burfoot, Executive Editor, Runner's World Magazine ";
quotes[5] ="I read your website all the time. It is my newspaper in the morning when I eat breakfast." ;
authors[5] = "Triathlete Jill Savege - 2003 Pan American Champion, Canadian Champion, Athens Olympian";
quotes[6] ="One of the first things I do every morning is check out Runnersweb.com. Keep it up!";
authors[6] = "Triathlete Natasha Filliol - Canadian Elite Triathlon Team, 2002 Commonwealth Games Team, 2003 Pan American Games Team";
quotes[7] ="...I read it on your Runners' Web, which I have set up as my Homepage of course!";
authors[7] = "Triathlete Sharon Donnelly - 1999 Pan American Champion, 3 Time Canadian Champion and Sydney Olympian";
quotes[8] ="Runner's Web is an amazing site. Everything you could possibly want to know about running is there. There are links to every possible place on the web that has to do with running! This is a site worth bookmarking!";
authors[8] = "Finish Line Sports";
quotes[9] ="Keep up the great work on your site!";
authors[9] = "Eric Schmitz, Certified Strength and Conditioning Coach NSCA, Performance Enhancement Specialist NASM, USA Triathlon Level One Coach";
quotes[10] = "The Runner's Web is my 'one-stop shopping' for news and technical pieces. I really appreciate having such a thorough information resource for what is happening in the world of endurance sport. Fantastic!";
authors[10] ="Lance Watson, Olympic triathlon coach";
quotes[11] = "We believe that the Runner's Web touches the start and finish line world better than anyone... ";
authors[11] ="Terry McKinty, President, Somersault Promotions";	
quotes[12] = "I am a fan of RunnersWeb. We watch the site every day to get the latest. This site is hot!. ";
authors[12] ="Kor van der Bij, AtletiekWereld.nl";	
quotes[13] = "I check Runners Web about 4 times a day. I'm addicted to it. It's an awesome site.";
authors[13] ="Peter Reid, three-time Ironman World Champion";	
quotes[14] = "Runners Web gives you the straight goods. No BS, no frills, just a lot of great information. ";
authors[14] ="Cameron Elford, Managing Editor, Triathlete Magazine.";	
quotes[15] = "Runners Web is the first place to look for inside information and behind-the-scenes look at the triathlon scene.It’s quick, adaptable and flexible.  I like that. ";
authors[15] ="Timothy Carlson, Senior Correspondent, Inside Triathlon.";	
quotes[16] = " RunnersWeb runs rings round the rest....to run my best, I read it...no jest ...just to keep abreast !";
authors[16] ="Emma Snowsill, ITU World Cup Series Triathlon Champion.";	
quotes[17] = " “I want to promote road racing in Canada. I’ve always been impressed with Ken Parker and his support of the sport. When Ken talked to me about coming back to Ottawa for the RunnersWeb5K.com, I decided to go for it";
authors[17] ="Emilie Mondor, first Canadian woman to run 5K in under 15:00.";	
quotes[18] = " I check your website daily and love what you do for sport.";
authors[18] ="Lauren Groves, Canadian Triathlon Champion - 2006.";	
quotes[19] = " We love Runners Web! .";
authors[19] ="RunningSkirts.com.";	


 //calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DT>" + "-- " + authors[index] + "\n");
//document.write("</DL>\n");
//done
