var Lyric=new Array() 

Lyric[0] = "from sea to shining sea, and a hundred points between, still we go on diggin' ev'ry show";
Lyric[1] = "Driven on without a moment to spend, to pass an evening with a drink and a friend";
Lyric[2] = "The cities in the land all extend a welcome hand, till morning when it's time for us to go";
Lyric[3] = "For the words of the profits were written on the studio wall...concert hall";
Lyric[4] = "I was lined up for glory, but the tickets sold out in advance";
Lyric[5] = "All the stages we passed through, all the roles we played";
Lyric[6] = "Turn up the music and smile, get carried away on the songs and stories of vanished times";

var Q = Lyric.length;
var whichLyric=Math.round(Math.random()*(Q-1));
function showLyric(){document.write(Lyric[whichLyric]);}
showLyric();