
/* ********************************************************************
* GreyWyvern's Buffered Text-fade Effect - v2.2a
* - A bit of Javascript for handling intelligent fading of text
* - Copyright 2006 - Licenced for free distribution under the BSDL
*   - http://www.opensource.org/licenses/bsd-license.php
*
*   This program is licenced under the BSDL and may be distributed far
* and wide, anywhere on the planet and beyond (maybe!)  If you happen
* to get a kick out of this script, please drop me a note at:
* javascript@greywyvern.com and tell me where you gave it a good home
* and plenty of bytes to eat, hmmm? :)  I'd be eternally grateful.
*
* Description:
*   A complete recode of the original fade in and out javascript I
* wrote with many improvements.  The buffer system now works almost
* flawlessly, and making fade effects is much easier for the javascript
* beginner.  Just fill in the messages and assign the onmouseover and
* onmouseout attributes with the appropriate fade function!  It also
* helps *me* out by allowing the instruction manual (below) to be much
* simpler to write ;)
*
* Changelog:
*  2.2a - Code optimization accumulation release
*       - No need to upgrade from 2.2 if it works for you
*
*  2.2 - Licence changed from GPL to BSDL
*
*  2.1 - The script would cancel two fade commands if one was a fade in
*        and one was a fade out of the same fade target and message.
*        I added some extra code to cancel the opposite case: two
*        commands where one is a fade out and the other is a fade in of
*        the same message.
*      - If the fade trigger element contained text within an HTML
*        element, a quick mouseover/mouseout or mouseout/mouseover pair
*        of events would be triggered if you moused-out of the text,
*        while staying within the trigger element.  I added a new
*        timeout to catch this set of events.
*
* Support:
*   Opera 7.x  - Perfectly
*   IE 6       - Perfectly
*   IE 5.5     - Perfectly
*   IE 5.01    - Fails
*   Mozilla    - Flickers slightly
*   Firefox    - Flickers slightly
*
*
* I) Setting Up
*   Copy the javascript from this page into an external .js file or
* into the <script> tag of your own HTML page.  This shouldn't be that
* difficult, but you wouldn't believe the kind of mail I get about
* this!  Just do it, okay?  Jeez.
*
* a) The Fade Object
*   After that's done we need to create a fade object.  We do this by
* calling the fadeObj function with a number of arguments.  We'll use
* the default example included in the script: fader[0].  You can delete
* the fader[1] lines if you like.
*
* fader[0] = new fadeObj(0, 'fade0', 'dddddd', '000000', 20, 20, true);
*
*   We'll go through the arguments in order.
*
*   The first argument (0), is the same number you give to the fader
* variable.  So if your fader object is fader[78], the first argument
* would be 78.
*
*   Next is the id of the HTML tag which will be displaying the fading
* effect.  Usually you'll want to apply some height and width styles to
* this element, since it starts out with no text by default and will
* probably be collapsed.  You don't want it jumping around when the
* script writes new text to it.
*
*   The next two values are hexidecimal colour values, WITHOUT the
* preceding #.  The first value is the starting colour, or the colour
* the text is before it fades in.  The second value is the ending
* colour, or the colour the text will be when it finishes fading in.
*
*   After this comes two speed integers, the first for fade-in speed,
* the second for fade-out.  The speed of the fade will increase the
* smaller these numbers get.  At a value of one there is no visible
* fade effect; the text will just "appear".
*   Essentially what these numbers are is the number of "steps" the
* script must take to complete the fade.  With a value of 20 like in
* the example above, there will be 20 colour changes before the text
* is fully faded-in or faded-out.
*
*   The final argument is very important.  It tells the script if there
* is a default block of text you'd like to display in the fade element.
* If set to true, the value of the message[0] will be faded-in if there
* are no more fade commands in the queue.  Once another fade is
* triggered, the default text will fade out first before the new text
* fades in.
*   If set to false, the script will erase the text in the fade element
* if there are no more fade commands left in the queue, leaving it
* completely blank.
*
*
* b) The Fade Messages
*   After setting up our fade object, all we need to do now is write
* out all of the messages which will be displayed in this element.
* Remember that this script only affects text and including images or
* links won't work.
*
*   Messages are included in the message[] array.  Simply assign each
* message a number, like so:
*
* fader[0].message[1] = "Fade text, message one.";
*
*   Each fade object can have as many messages as you want, and be in
* any numerical order.  You can even skip numbers, but note that if you
* use the fade() pointed at a message number which doesn't exist, you
* will get an error.
*
*   As mentioned above, if your fade object has a default message
* specified, it will use the message text from message[0].  Specifying
* a default message and not including a message[0] will cause an error.
*
*
* II) The Events
*   Fades can be triggered by any DOM event, but most likely you'll be
* using mouseover and mouseout events.  I used those events as examples
* below.
*
*   To trigger a fade, you use the fade() function which takes a few
* important arguments:
*
* Example: onmouseover="fade(0, 1, true);"
* 
*   The first argument is the number of the fade object this command is
* targetting.  In this case, it's been pointed at fader[0].
*
*   The second is the message this command refers to.  This one has
* been associated with message[1] of fader[0].
*
*   Lastly, the final argument indicates the direction of the fade.
* true = fade in, false = fade out.
*
*   Examine the working example script to see how these events were
* placed on the <td> elements below.
*
*
* III) Tips
*   - If you give your fade object a default message, it won't appear
* until after the first mouseover event is triggered.  To rectify this
* you can add an onload event to the <body> tag which triggers the
* default message: <body onload="fade(0, 0, true);"> where the first
* argument is, of course, the number of the desired fade object.
*
*   - All the text in each message[] variable MUST be on one line in
* the code.  That means this:
*
*   fader[0].message[1] = "Fader zero,
* message one";
*
* ... is not allowed!  The text should wrap automatically when it's
* displayed on your HTML page, but you can force line breaks with the
* <br> tag.
*
*   - If you're placing the fading text on a background, make the
* starting colour an average sample of the background instead of just
* black or white.  This will enhance the "disappearing" effect.
*
*   - The script can only fade text, but can accept non-graphical HTML
* tags like <p>, <table> (no borders), <strong> and <em>.  Use these
* tags to add structure and simple text-effects to your fades.
*
*   - To have links fade along with with the surrounding text, apply
* the CSS style: color:inherit !important; to all links within the fade
* text messages.
*
* *********************************************************************
* That's it!  Isn't that amazing!?! :)
*
* If you have any problems with this script, don't hesitate to email me
* at javascript@greywyvern.com and I'll be happy to answer your matter-
* of-life-and-death questions!  Cheers!
* ****************************************************************** */

/* ***** Begin: GreyWyvern's Buffered Text-fade Effect - v2.2a ***** */
var fader = new Array(), fadeQ = new Array();
var RGB = new Array(256), k = 0, hex = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"];
for (var i = 0; i < 16; i++) for (var j = 0; j < 16; j++) RGB[k++] = hex[i] + hex[j];

function fadeObj(number, id, colOff, colOn, spdIn, spdOut, def) {
  this.number = number;
  this.id = id;
  this.colOff = [parseInt(colOff.substr(0, 2), 16), parseInt(colOff.substr(2, 2), 16), parseInt(colOff.substr(4, 2), 16)];
  this.colOn = [parseInt(colOn.substr(0, 2), 16), parseInt(colOn.substr(2, 2), 16), parseInt(colOn.substr(4, 2), 16)];
  this.colNow = [parseInt(colOff.substr(0, 2), 16), parseInt(colOff.substr(2, 2), 16), parseInt(colOff.substr(4, 2), 16)];
  this.spdIn = spdIn;
  this.spdOut = spdOut;
  this.def = def;
  this.direction = false;
  this.active = false;
  this.message = new Array();
  this.messageNow = 0;
}

function fadeCmd(number, message, direction) {
  this.number = number;
  this.message = message;
  this.direction = direction;
}

function fade(number, message, direction) {
  if (fader[number].def && fader[number].messageNow == 0 && fader[number].direction) {
    fadeQ[fadeQ.length] = new fadeCmd(number, 0, false);
    fadeQ[fadeQ.length] = new fadeCmd(number, message, direction);
    message = 0;
    direction = false;
  } else fadeQ[fadeQ.length] = new fadeCmd(number, message, direction);
  setTimeout(function() { fadeBegin(number); }, 20);
}

function fadeBegin(number) {
  for (var x = 0; x < fadeQ.length; x++) {
    for (var y = x + 1; y < fadeQ.length; y++) {
      if (fadeQ[x].number == fadeQ[y].number && fadeQ[x].message == fadeQ[y].message && fadeQ[x].direction != fadeQ[y].direction) {
        fadeQ.splice(x, 1);
        fadeQ.splice(y - 1, 1);
      }
    }
  }
  if (!fader[number].active) {
    for (var x = 0; x < fadeQ.length; x++) {
      if (fadeQ[x].number == number && fadeQ[x].direction != fader[number].direction) {
        var del = fadeQ.splice(x, 1);
        setTimeout(function() { fadeEng(number, del[0].message, del[0].direction); }, 0);
        break;
      }
    }
  }
}

function fadeEng(number, message, direction) {
  if (!fader[number].active) {
    fader[number].active = true;
    fader[number].direction = direction;
    fader[number].messageNow = message;
    document.getElementById(fader[number].id).innerHTML = fader[number].message[message];
  }
  var iniCol = (direction) ? fader[number].colOff : fader[number].colOn;
  var endCol = (direction) ? fader[number].colOn : fader[number].colOff;
  var incCol = fader[number].colNow;
  var spd = (direction) ? fader[number].spdIn : fader[number].spdOut;
  for (var x = 0; x < 3; x++) {
    var incr = (endCol[x] - iniCol[x]) / spd;
    incCol[x] = (incr < 0) ? Math.max(incCol[x] + incr, endCol[x]) : Math.min(incCol[x] + incr, endCol[x]);
  }
  document.getElementById(fader[number].id).style.color = "#" + RGB[parseInt(incCol[0])] + RGB[parseInt(incCol[1])] + RGB[parseInt(incCol[2])];
  if (incCol[0] == endCol[0] && incCol[1] == endCol[1] && incCol[2] == endCol[2]) {
    fader[number].active = false;
    for (var x = 0; x < fadeQ.length; x++) {
      if (fadeQ[x].number == number) {
        var del = fadeQ.splice(x, 1);
        setTimeout(function() { fadeEng(number, del[0].message, del[0].direction); }, 0);
        return false;
      }
    }
    if (!direction) {
      if (fader[number].def) {
        setTimeout(function() { fadeEng(number, 0, true); }, 0);
      } else document.getElementById(fader[number].id).innerHTML = "&nbsp;";
    }
  } else setTimeout(function() { fadeEng(number, message, direction); }, 0);
}
/* ***** End: GreyWyvern's Buffered Text-fade Effect - v2.2a ******* */




/* *****
 * User defined fade objects and messages
 *
 * These messages are used in fades triggered by mouseovers and
 * mouseouts on table cells.  They are the simplest type of fade and
 * require no extra Javascript code.
 */
fader[0] = new fadeObj(0, 'fade0', 'dddddd', '000000', 20, 20, true);
fader[0].message[0]="&quot;Dan gets to the point.  No extra verbal run on.&quot; <br><table width=100%><tr><td align=right><font class=small>  R.M. - Toronto, Canada </font></td></tr></table>"

fader[1] = new fadeObj(1, 'fade1', 'bbbbbb', '000000', 20, 20, false);
fader[1].message[1] = "Success is relative. It is what we can make of the mess we have made of things.<br />- T.S. Eliot";
fader[1].message[2] = "We have two ears and one mouth so we may listen more and talk the less.<br />- Epictetus";
fader[1].message[3] = "It is better to be violent, if there is violence in our hearts, than to put on the cloak of nonviolence to cover impotence.<br />- Mahatma Gandhi";
fader[1].message[4] = "Don't part with your illusions. When they are gone you may still exist, but you have ceased to live.<br />- Mark Twain";



/* *****
 * The code below describes how to make a throbbing or automatic fade
 * sequence of messages.  The throbFade function is called repeatedly
 * which controls what commands are sent to the fade engine, rather
 * than using mouseovers.
 *
 * Notes:
 * - A global variable throbStep is used to keep track of where the
 *   animation is currently in the sequence.
 * - The list of messages defined in the fader *must* start at zero (0)
 *   and count upwards without skipping any integers.
 * - The second line of the throbFade() function controls how fast
 *   commands get sent to the fade engine.  It waits only 100 milli-
 *   seconds when fading out, but 4000 milliseconds (4 seconds) when
 *   fading in; this means the message will remain visible for about 4
 *   seconds before fading out again.
 *
 * Other types of fade animation are possible simply by designing
 * different ways to control the fade-ins and fade-outs!
 */
function throbFade() {
  fade(2, Math.floor(throbStep / 2), (throbStep % 2) ? false : true);
  setTimeout("throbFade();", (throbStep % 2) ? 100 : 4000);
  if (++throbStep > fader[2].message.length * 2 - 1) throbStep = 0;
}

fader[2] = new fadeObj(2, 'fade2', 'bbbbbb', '000000', 30, 30, false);
fader[2].message[0]="&quot;Dan gets to the point.  No extra verbal run on.&quot; <br><table width=100%><tr><td align=right><font class=small>  R.M. - Toronto, Canada </font></td></tr></table>";
fader[2].message[1]="&quot;Spirited presentation combined with substantive content.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.J. - Nebraska</font></td></tr></table>";
fader[2].message[2]="&quot;Very knowledgeable man.  Good teacher, very descriptive!&quot;<br><table width=100%><tr><td align=right><font class=small>  B.S. - Alabama</font></td></tr></table>";
fader[2].message[3]="&quot;Common sense - no bullshit approach.&quot;<br><table width=100%><tr><td align=right><font class=small>  S.O. - California</font></td></tr></table>";
fader[2].message[4]="&quot;Instructor [Dan] made things clear and easy to understand.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.W. - Illinois </font></td></tr></table>";
fader[2].message[5]="&quot;Very well organized, easy to understand.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.D. - Missouri </font></td></tr></table>";
fader[2].message[6]="&quot;Instructor [Dan] was upbeat - kept material from being 'boring.'&quot;<br><table width=100%><tr><td align=right><font class=small>  P.J. - Florida </font></td></tr></table>";
fader[2].message[7]="&quot;It was material <b><u>not</u></b> presented in any other class.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.L. - Iowa  </font></td></tr></table>";
fader[2].message[8]="&quot;Best electrical class I have ever been to.  Dan is top instructor.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.F. - New Mexico </font></td></tr></table>";
fader[2].message[9]="&quot;Tips & tricks, valuable info.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.K. - Maryland </font></td></tr></table>";
fader[2].message[10]="&quot;Everyday practical information.&quot;<br><table width=100%><tr><td align=right><font class=small>  L.H. - North Carolina </font></td></tr></table>";
fader[2].message[11]="&quot;Fast paced and logical.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.S. - Indiana </font></td></tr></table>";
fader[2].message[12]="&quot;Good teaching ethics.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.W. - Idaho   </font></td></tr></table>";
fader[2].message[13]="&quot;Presentation clear, precise, very easy to follow.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.H. - Hawaii   </font></td></tr></table>";
fader[2].message[14]="&quot;Good interaction with students and very knowledgeable.&quot;<br><table width=100%><tr><td align=right><font class=small> J.D. - Missouri </font></td></tr></table>";
fader[2].message[15]="&quot;Dan's knowledge and teaching experience.&quot;<br><table width=100%><tr><td align=right><font class=small>  W.G. - Pennsylvania </font></td></tr></table>";
fader[2].message[16]="&quot;Professionalism (gets to the point, no bullshit).&quot;<br><table width=100%><tr><td align=right><font class=small>  J.R. - California </font></td></tr></table>";
fader[2].message[17]="&quot;Dan's knowledge of the auto industry - excellent instructor!&quot;<br><table width=100%><tr><td align=right><font class=small>  P.M. - Connecticut</font></td></tr></table>";
fader[2].message[18]="&quot;Very clear and in depth.&quot;<br><table width=100%><tr><td align=right><font class=small>  B.M.K. - Georgia</font></td></tr></table>";
fader[2].message[19]="&quot;Gets to the point.&quot;<br><table width=100%><tr><td align=right><font class=small>  P.W. - Utah   </font></td></tr></table>";
fader[2].message[20]="&quot;Emphasis on good basic techniques.&quot;<br><table width=100%><tr><td align=right><font class=small>  F.A.D. - Arizona </font></td></tr></table>";
fader[2].message[21]="&quot;Plain and simple.  No complex, useless material.  Straight to the point.&quot;<br><table width=100%><tr><td align=right><font class=small> H.J.C. - Nevada </font></td></tr></table>";
fader[2].message[22]="&quot;Very good info.  Very knowledgeable.  Time well spent.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.P. - California</font></td></tr></table>";
fader[2].message[23]="&quot;To the point, with many good tips.&quot;<br><table width=100%><tr><td align=right><font class=small>  C.S.H. - North Carolina</font></td></tr></table>";
fader[2].message[24]="&quot;The way it was presented it made you listen.&quot;<br><table width=100%><tr><td align=right><font class=small>  E.L.A. - Texas </font></td></tr></table>";
fader[2].message[25]="&quot;Right to the point diagnostics.&quot;<br><table width=100%><tr><td align=right><font class=small>  E.W. - Missouri</font></td></tr></table>";
fader[2].message[26]="&quot;Made it fun and simple.  Very informative.&quot;<br><table width=100%><tr><td align=right><font class=small>  C.W. - New Mexico</font></td></tr></table>";
fader[2].message[27]="&quot;Useful information I can really use at work.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.L. South Carolina</font></td></tr></table>";
fader[2].message[28]="&quot;Dan was very clear and precise, citing many everyday examples.&quot;<br><table width=100%><tr><td align=right><font class=small>  P.L. - California</font></td></tr></table>";
fader[2].message[29]="&quot;Presenter [Dan] knows his stuff and put it across very well.  Was very exciting, kept me awake.&quot;<br><table width=100%><tr><td align=right><font class=small>  S.A. - Vermont</font></td></tr></table>";
fader[2].message[30]="&quot;Lively presentation.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.B. - Ohio</font></td></tr></table>";
fader[2].message[31]="&quot;Easy to understand.  Excellent instructor.&quot;<br><table width=100%><tr><td align=right><font class=small>  N.L. - Pennsylvania</font></td></tr></table>";
fader[2].message[32]="&quot;Dan teaches in laymen's terms.&quot;<br><table width=100%><tr><td align=right><font class=small>  C.C. - New Jersey</font></td></tr></table>";
fader[2].message[33]="&quot;Excellent instructor.  Simple but interesting presentation.&quot;<br><table width=100%><tr><td align=right><font class=small>  G.H. - Washington</font></td></tr></table>";
fader[2].message[34]="&quot;This guy is dedicated to quality work.&quot;<br><table width=100%><tr><td align=right><font class=small>  C.V. - California</font></td></tr></table>";
fader[2].message[35]="&quot;Easy to follow and understand.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.J. - Arizona</font></td></tr></table>";
fader[2].message[36]="&quot;Real world experiences and fixes.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.M. - Missouri</font></td></tr></table>";
fader[2].message[37]="&quot;Fast paced - very well explained.&quot;<br><table width=100%><tr><td align=right><font class=small>  M.M. - Connecticut</font></td></tr></table>";
fader[2].message[38]="&quot;Stayed on topic, focused sharply.&quot;<br><table width=100%><tr><td align=right><font class=small>  M.L. - Washington</font></td></tr></table>";
fader[2].message[39]="&quot;The clarity and enthusiasm of the instructor.&quot;<br><table width=100%><tr><td align=right><font class=small>  M.M. - Michigan</font></td></tr></table>";
fader[2].message[40]="&quot;Interesting, and moved right along, keeping you involved.&quot;<br><table width=100%><tr><td align=right><font class=small>  S.P. - Utah </font></td></tr></table>";
fader[2].message[41]="&quot;Great delivery of good info.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.R. - California</font></td></tr></table>";
fader[2].message[42]="&quot;[Dan is] friendly, and keeps the audience involved.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.L.H. - Idaho</font></td></tr></table>";
fader[2].message[43]="&quot;Thorough explanation, great teaching!&quot;<br><table width=100%><tr><td align=right><font class=small>  M.B. - Rhode Island </font></td></tr></table>";
fader[2].message[44]="&quot;I thought the information was presented extremely efficiently.&quot;<br><table width=100%><tr><td align=right><font class=small>  B.B. - New Hampshire</font></td></tr></table>";
fader[2].message[45]="&quot;Best class yet!  Teacher knew what he was talking about.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.M. - New York</font></td></tr></table>";
fader[2].message[46]="&quot;Information I CAN USE!&quot;<br><table width=100%><tr><td align=right><font class=small>  C.B. - Ohio</font></td></tr></table>";
fader[2].message[47]="&quot;Great materials - clear and simple!&quot;<br><table width=100%><tr><td align=right><font class=small>  M.P. - Washington</font></td></tr></table>";
fader[2].message[48]="&quot;Communication between instructor and students.  Easy to understand.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.M. - Maryland </font></td></tr></table>";
fader[2].message[49]="&quot;Dan's presentation style was very lively.&quot;<br><table width=100%><tr><td align=right><font class=small>  P.C. - California</font></td></tr></table>";
fader[2].message[50]="&quot;Great explanations.  Good presentation.&quot;<br><table width=100%><tr><td align=right><font class=small>  M.S. - Washington</font></td></tr></table>";
fader[2].message[51]="&quot;Good real world, simple diagnosis.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.W. - Oregon</font></td></tr></table>";
fader[2].message[52]="&quot;Dan's books and illustrations, personal knowledge.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.T. - New York</font></td></tr></table>";
fader[2].message[53]="&quot;How easy it is going to be able to use the info in the shop.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.M. - Wisconsin</font></td></tr></table>";
fader[2].message[54]="&quot;Clear information, user friendly workbook.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.P. - Oregon</font></td></tr></table>";
fader[2].message[55]="&quot;It was presented in a simple manner - fast and easy to comprehend.&quot;<br><table width=100%><tr><td align=right><font class=small>  W.B. - Washington</font></td></tr></table>";
fader[2].message[56]="&quot;Animated, knowledgeable, comical, informative.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.A. - Delaware </font></td></tr></table>";
fader[2].message[57]="&quot;Learning easy useful diagnostic skills.&quot;<br><table width=100%><tr><td align=right><font class=small>  G.A. - Virginia </font></td></tr></table>";
fader[2].message[58]="&quot;Simple straight forward presentation.&quot;<br><table width=100%><tr><td align=right><font class=small>  B.M. - Hawaii </font></td></tr></table>";
fader[2].message[59]="&quot;Good and usable content/material.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.B. - New York </font></td></tr></table>";
fader[2].message[60]="&quot;Speed and relevance of material delivery.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.K. - Oregon</font></td></tr></table>";
fader[2].message[61]="&quot;The ability of the presenter [Dan] to make the diagnostic procedures seem simple.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.B. - South Carolina  </font></td></tr></table>";
fader[2].message[62]="&quot;Professional quality of instructor.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.M. - Connecticut</font></td></tr></table>";
fader[2].message[63]="&quot;Good examples, clear explanations.&quot;<br><table width=100%><tr><td align=right><font class=small>  V.S. - California </font></td></tr></table>";
fader[2].message[64]="&quot;Detailed, vehicle specific information.&quot;<br><table width=100%><tr><td align=right><font class=small>  O.E. - New York </font></td></tr></table>";
fader[2].message[65]="&quot;Awesome instructor - very knowledgeable.&quot;<br><table width=100%><tr><td align=right><font class=small>  P.M. - Washington  </font></td></tr></table>";
fader[2].message[66]="&quot;Presentation - respectful, entertaining, technical, not too crowded.&quot;<br><table width=100%><tr><td align=right><font class=small>  J.H. - Oregon  </font></td></tr></table>";
fader[2].message[67]="&quot;Real world application on everyday problems.&quot;<br><table width=100%><tr><td align=right><font class=small>  M.I. - South Carolina    </font></td></tr></table>";
fader[2].message[68]="&quot;High energy presentation, moved along, easy to stay tuned.&quot;<br><table width=100%><tr><td align=right><font class=small>  M.M. - New York </font></td></tr></table>";
fader[2].message[69]="&quot;Moved very quickly with a lot of In-depth info.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.K. - Maryland  </font></td></tr></table>";
fader[2].message[70]="&quot;It will truly help on the 'frontlines'.&quot;<br><table width=100%><tr><td align=right><font class=small>  L.K.P. - Ohio </font></td></tr></table>";
fader[2].message[71]="&quot;It was all facts - no sales pitches.&quot;<br><table width=100%><tr><td align=right><font class=small>  D.W. - Washington</font></td></tr></table>";
fader[2].message[72]="&quot;Good pace, entertaining presenter, good tips.&quot;<br><table width=100%><tr><td align=right><font class=small>  R.B. - Massachusetts </font></td></tr></table>";
fader[2].message[73]="&quot;Dan's personality, knowledge of material, ability to relate to students.&quot;<br><table width=100%><tr><td align=right><font class=small>  T.T. - New York </font></td></tr></table>";
fader[2].message[74]="&quot;Real in-the-field information.  Stuff the 'book' won't fix.&quot;<br><table width=100%><tr><td align=right><font class=small>  B.L. - Oregon</font></td></tr></table>";



var throbStep = 0;
setTimeout("throbFade();", 1000);

