<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var core = 0
var currentdate = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

quote = new StringArray(3)
quote[0] = "Pat Schiller combines the jazzy rhythms of Peter Allen with the lyrical, piano-based melodies of Billy Joel to create in 'Living A Dream' a winning assortment of songs encompassing stylistically everything from Rhythm & Blues, to Rock, to a taste of the Basa Nova."
quote[1] = "Most of the 10 tracks on Pat Schiller's Living A Dream are romantic ballads that emphasize his deep, expressive voice and fluid piano playing. On 'You Took Your Love (Didn't You)', 'And So It Goes', and '(Make Up For) Lost Time' he mixes string arrangements with jazz to create a supper-club ambience. The breezy You're The One is the most appealing track."
quote[2] = "Picking up some steam this week on the format is newcomer Pat Schiller. His debut single 'You Took Your Love' is creating quite an early buzz with some of our program and music directors."

author = new StringArray(3)
author[0] = "Charles Siebert, Frequent contributor to the New York Times Magazine"
author[1] = "Joseph Simek, Illinois Entertainer"
author[2] = "Larry Weir, New Music Weekly"

var ran = 60/quote.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thequote = quote[core]
var theauthor = author[core]
var thebreak = ' - '
var theq = '"'
var theend = '.'

document.write(theq + thequote + theq + thebreak + theauthor + theend)

//-->