var Lyric=new Array() 

Lyric[0] = "See the works of gifted hands, that grace this strange and wondrous land"
Lyric[1] = "the pictures that give pleasure to your eye"
Lyric[2] = "Art as expression, not as market campaigns, will still capture our imaginations"
Lyric[3] = "In fascination, with the eyes of the world we stare"
Lyric[4] = "I gaze at their feverish pictures, the secrets that set them apart"
Lyric[5] = "Some kind of pictures on the sense o'clock news"
Lyric[6] = "Memory strumming at the heart of a moving picture"
Lyric[7] = "the weightlessness of pixellated space"

var Q = Lyric.length;
var whichLyric=Math.round(Math.random()*(Q-1));
function showLyric(){document.write(Lyric[whichLyric]);}
showLyric();

