// JavaScript Document

<!--

// The Random Lyric Array Function 

function makeArray(len) {
    for (var i = 0; i < len; i++) this[i] = null;
this.length = len;
}

// This is where the array of text is created.

lyrics = new makeArray(10);
lyrics[0] = "i knew i was in trouble as her turntable bubbled with the dark side of the moon.. down on seven sisters road";
lyrics[1] = "why don't they cross the millions of miles within that empty room";
lyrics[2] = "it's the sunshine thru the dress that really really killz me, man";
lyrics[3] = "it's not up in your head, it's not down in your feet";
lyrics[4] = "so open up your mind, little miss divine";
lyrics[5] = "i'm gonna get to you";
lyrics[6] = "hipsters, quipsters, quadrophonic tricksters";
lyrics[7] = "information education to our kingdom it comes";
lyrics[8] = "hey, you could be my dancer, you could be the answer";
lyrics[9] = "i don't mind trouble as long as i am in it with you";

// The random number generator.

function rand(n) {
seed = (0x015a4e35 * seed) % 0x7fffffff;
return (seed >> 16) % n;
}

var now = new Date()
var seed = now.getTime() % 0xffffffff

if(self != top){top.location.href='http://www.sevensistersroad.com/index.html';}

//-->
