// JavaScript Document
var content = "<strong>High Desert Trails 2011</strong><br>NASA / CRS-GT 1st in Class / 7th Overall<hr><strong>Overall 2007</strong><br>Rally America 2nd Place Southern Section PGT Driver<hr> <strong>Oregon Trail Rally 2007</strong><br>Friday 3rd, Saturday 4th, Sunday 3rd, Regional PGT<hr><strong>Olympus Rally 2007</strong><br>8th Place Regional Open Class both days<hr><b>Rim of the World Rally 2006</b><br>3rd place CRS PGT, WSRC - 12th overall<hr><b>Rim of the World Rally 2004</b><br>Highest Flying Eclipse  DNF<hr><strong>2003 SCCA / SOPAC</strong><br>2nd Place Driver &amp; Co-Driver<hr><b>Rim of the World Rally 2003</b> - Finished<hr><b>Laughlin International Rally 2003</b><br>DNF broken timing belt / bent vavles<hr><b>Prescott Club Rally 2003</b><br>Awarded Fastest Rookie Team &amp; $100<i> - DNF Bent Control Arm</i><a href='http://dbrally.com/DBPresscott03Full.htm' target='_new'>--- More ---</a>";

function twDisplayTW() {twDisplay('tw',content,0);}
loaded('tw',twDisplayTW);

var brk = '~'; // character to use for line break
var resetTime = 10; // set to 0 to not reset or seconds to delay before reset

// Typewriter Text Javascript
// copyright 13th October, 2007 by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code in this script (including these
// comments) is used without any alteration
// you can change the values above this notice to suit your requirements
function twDisplay(id,content,num) {var delay = 14; if (num <= content.length)  {var lt = content.substr(0,num); document.getElementById(id).innerHTML = lt.replace(RegExp(brk,'g'),'<br \/>'); num++; if (num > content.length) delay = resetTime * 1000;} else {document.getElementById(id).innerHTML = ''; num = 0;} if (delay > 0) setTimeout('twDisplay("'+id+'","'+content+'","'+num+'")',delay);} var pageLoaded = 0; window.onload = function() {pageLoaded = 1;}; function loaded(i,f) {if (document.getElementById && document.getElementById(i) != null) f(); else if (!pageLoaded) setTimeout('loaded(\''+i+'\','+f+')',100);}

