/* 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] = "You'll enjoy 20% instant income on all your purchases (that's an instant 20% savings)."
  message[1] = "You'll get to pre-order a selection of brand new stamps & fabulous accessories, before each catalog & mini-catalog comes out."
  message[2] = "All the catalog merchandise you purchase for yourself also counts toward our low quarterly minimum, and toward our Great Rewards program, career milestones, monthly overrides, and free mini catalog program."
  message[3] = "You'll receive our full color Stampin' Success monthly magazine - full of great tips, techniques, sample projects & business advice."
  message[4] = "For only $12.95/month you can have your own Demonstrator website that allows your family and friends to shop online from you 24 hours a day - and you don't have to lift a finger once it's set up, the website is even updated & maintained for you!"
  message[5] = "You'll get to attend Stampin' Up! demonstrator events - Convention, Regionals, local group events and special events just for my direct recruits."
  message[6] = "You'll learn about specials, retiring items, new products and company announcements before the public is informed."
  message[7] = "You can earn extra income for the holidays or to help out in these economic tough times."
  message[8] = "Or you can earn extra income just to support your habit!"
  message[9] = "You can enjoy all the perks on your own terms - work as little or as much as you like - when and where you like."
  message[10] = "You'll receive a copy of the catalog and mini catalogs FREE throughout the year."
  message[11] = "You can enjoy hostess benefits and income - be your own best customer and receive all the perks of being a hostess AND a demonstrator."
  message[12] = "You'll enjoy the tax benefits of owning your own business - wouldn't you love to write off film developing, travel for business, designer series papers, the BIG SHOT, and more?"
  message[13] = "You'll be recognized for all your hard work in sales, recruiting and promoting."
  message[14] = "You'll enjoy flexibility in how you generate sales - home parties, catalog shows, stamp clubs, classes, direct orders, personal orders, craft fairs, sales of finished items - find the way that works best for you or pursue a combination of efforts."
  message[15] = "You'll get to see the brand new catalog first."
  message[16] = "You'll get to see the Sale-A-Bration brochure first."
  message[17] = "You can take advantage of Demonstrator-only bulk buy offers."
  message[18] = "You'll receive my support - I can help you reach whatever personal goals you set for yourself - whether you just want to enjoy the discount or build a solid business for yourself, I'll be with you every step of the way!"

function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 19) {text = 0; }  // change the # 4 at the left to the maximum # of message lines you want included
    window.setTimeout("changeText()", 10000); }  // 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();
});