var oLyrics = {
	asLyrics : ['We sat in silence,<br />We listened to Patrick Wolf,<br />We lay in Rainbows.<br />I thought about it some more,<br />So much more I could do.<br />I\'m so afraid,<br />When you\'re not here.',
		'You spend too much time missing out all the signs and lines and lies and love and spies and something else and blah blah blah.',
		'All,<br />All the pale shades,<br />Growing in Winter.<br />Shimmering haze.<br />All,<br />All the broken streams,<br />Bleeding the mountains,<br />Giving off steam.',
		'Little Babies,<br />Lost your brothers in the war.<br />Will you ever get there?<br />Will you ever get there?',
		'Although I know what could have been,<br/>My life is more commercial,<br/>And now it\'s more satisfying,<br />In a narrower way.<br />No movement required,<br/>Watched during daylight,<br/>Stuck doing this,<br/>When I get home.',
		'Eric Bana<br/>Eric Bana<br/>Eric Bana<br/>Eric Nuclear War<br/>Memories<br/>Memories<br/>Memories<br/>Of memories',
		'It\'s always warmer here,<br/>The carpets crawl for sure,<br/>And what was never meant to happen (skin melts from the bone).'
	],
	sEnd : '<br /><br />trolleymusic.com',
	
	sOutput : function(sID) {
		var oDiv = document.getElementById(sID);
		if (oDiv) {
			var iRandom = Math.random();
			iRandom = Math.ceil((iRandom * this.asLyrics.length));
			var sLyric = this.asLyrics[iRandom - 1] + this.sEnd;
			oDiv.innerHTML = sLyric;
		}
	}
}

oLyrics.sOutput('site');