

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

  }
}

quote = new StringArray(5)
quote[0] = "APTCO is your one stop source for all of your business needs.  Printing - Promotional Items - Office Supplies"
quote[1] = "One to One Marketing - Create marketing pieces specifically for your target audience. Increase response rate by over 30%."
quote[2] = "The most comprehensive Online Ordering system in the industry - APTCO brings it right to your desktop"
quote[3] = "Promotional Products that Engage, Interrupt and get your message in front of your clients. It is not about the product - It is about the action you want your client to take"
quote[4] = "Let us show you how we can simplify your Office Supply Procurement. GUARANTEED to save time and money. "


author = new StringArray(5)
author[0] = " "
author[1] = ""
author[2] = " "
author[3] = ""
author[4] = ""


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>'  )
}


