function add(s)
{
   this[this.length++] = s;
}

function random()
{
   var d       = new Date();
   var div     = Math.min(60.0, this.length);
   var index   = Math.floor(d.getSeconds() % div / (div - 1) * (this.length - 0.00001));

   return this[index];
}

function RandomArray()
{
   this.length = 0;
   this.add    = add;
   this.random = random;
   return this;
}

var lyrics = new RandomArray();

lyrics.add("I'm lost, I'm no guide. But I'm by your side.");
lyrics.add("The direction of the eye / so misleading. The deflection of the soul / nauseously quick.");
lyrics.add("All I want is what I've not got, but what I need is all around me.");
lyrics.add("You don't know how you got here, you just know you want out...believe in yourself almost as much as you doubt.");
lyrics.add("If I knew where it was, I would take you there.");
lyrics.add("And if you hold on tight to what you think is your thing, you may find you're missing all the rest.");
lyrics.add("Time is long and life is short, begin to live while you still can.");
lyrics.add("I see these children with their boredom and their vacant stares / God help us all if we're to blame for their unanswered prayers.");
lyrics.add("We're workin' our jobs, collectin' our pay / We believe we're gliding down the highway, when in fact we're slip sliding away.");

document.writeln(lyrics.random());
