/* 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] = "Baby boomers began retiring in 2006 and most of their assets will move to IRAs."
  message[1] = "If your company has $4 billion in retirement plan assets and a 25% employee turnover, you could be losing up to $2.5 million in revenue every year."
  message[2] = "Over the next four years, $2 trillion of the funds flowing into IRAs are anticipated to come directly from 401(k) rollovers."
  message[3] = "Roth IRA compensation limits sunset 2010.  Stay up to date on how Inspira can position you for the next major shift in IRA assets."
  message[4] = "The current IRA market is nearly $2.1 trillion greater than the 401(k) market."
  message[5] = "Based on a retirement business of 100,000 participants, not having a solid IRA Rollover Solution could potentially cost you $930,000 in pure profit every year."
  message[6] = "Individual Retirement Accounts (IRAs) currently represent more than $4.5 trillion in assets, and are anticipated to grow to $7 trillion in assets by 2013." 

function changeText() {
  if (message.length > 0) {
    document.change.descript.value=message[text];
    text++;
  }
  if (text == 4) {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();
});
