// JavaScript Document/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Sandeep Gangadharan | http://sivamdesign.com/scripts/ */
var text = 0;

var message=new Array();
  message[0] = "What a difference!  R.S. - Milford, MI"
  message[1] = "My system was so blank before.  Now it has more kick and accurate bass with only 50 watts!  A real winner!  C.L. - Orange Park, FL"
  message[2] = "Wonderful equipment!  Wish I could afford another EQX, but I sautÈed my first one.  M.S.  -  Indian Trail, NC"
  message[3] = "I love your crossovers.  They are the best!  All of my friends think that.  C.R. - Lake Charles, LA"
  message[4] = "Very clear, precise sound instantly.  R.S.  -  Sudbury, ON"
  message[5] = "You guys have high quality, good sounding, reliable equipment.  Thanks, and keep your integrity.  R.K.  -  Lincoln, NE"
  message[6] = "I love you!  (with a heart drawing)  K.B.  -  Printed Post, NY"
  message[7] = "You just fixed my nine-year-old EQL for free!! With customer service like that, combined with outstanding performance and bulletproof quality, I didn't even consider your competition.  D.A.. -  N. Andover, MA"
  message[8] = "I love the user-friendly equipment and the readable, understandable manual.  The guacamole was great!  H.E.  -  Roy, UT"
  message[9] = "Even though Iím a dealer and know AudioControl, Iím still blown away by it!  S.S.  -  Rockville, MD"
  message[10] = "Fabulous work of audio art!  Best r-channel car audio EQ ever (past, present, future)!  H.P.  -  Kirkland, WA"  
  message[11] = "Awesome product!!  It produces ìEARGASMICî bass.  E.A.  -  Calgary, AB"  
  message[12] = "WOW!  What a difference.  My system sounds great.  I can’t begin to tell you how dull and lifeless my system is without my EQ.  Thanks!  S.P.  -  Brick, NJ"  

function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 12) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 3500); }  // change the # on the left to adjust the speed of the
                                               // scroll. The smaller the # the faster the speed

// Multiple onload function created by: Simon Willison
// http://simon.incutio.com/archive/2004/05/26/addLoadEvent
function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      if (oldonload) {
        oldonload();
      }
      func();
    }
  }
}

addLoadEvent(function() {
  changeText();
});

