

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(5)
quote[0] = "eCommerce that Works™"
quote[1] = "Taking Your Website in the Right Direction"
quote[2] = "One Stop Travelers Choice™"
quote[3] = "Reach New Markets, Increase Sales, Personalize Relationships"
quote[4] = "Improve Your Profitability and Gain Competitive Advantage  "

author = new StringArray(5)
author[0] = "IMScart™"
author[1] = "with GMM"
author[2] = "IMScart Voyager™"
author[3] = "with GMM"
author[4] = "IMScart™"


function writeQuote()
{
var now = new Date()
var sec = now.getSeconds()
var core = sec % quote.length

var thequote = quote[core]
var theauthor = author[core]
var theq = '&quot;'
var theend = ''


document.write( '<i>' + theq + thequote + theq + " " + theauthor + '</i>'  )
}


