

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(5)
quote[0] = "Block Networks really bridged the gap between outsourcing and hiring internal IT staff."
quote[1] = "Block Networks gave us a full IT department, with none of the staffing issues.  We even printed them business cards that they use when dealing with our clients."
quote[2] = "Block Networks have given our consultancy an additional skillset, allowing us to get and fulfill more work."
quote[3] = "Block Networks have supported our network whenever I am sick or unavailable for over 5 years now."
quote[4] = "Block Networks have given us a stable environment, and actually lowered our IT costs while increasing our productivity."

author = new StringArray(5)
author[0] = "Managed Network Services Customer"
author[1] = "Managed Network Services Customer"
author[2] = "Additional Network Support Customer"
author[3] = "Additional Network Support Customer"
author[4] = "Managed Network Services Customer"


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( '' + theq + thequote + theq + " " + theauthor + ''  )
}


