//Word Shuffler

msg1="";
msg2="";
var now
var rnd
var tmp
var the_number
var QuoteArray = new MakeArray("Heisenberg may have slept here.",
"I know that this defies the law of gravity, but, you see, I never studied law. - Bugs Bunny",
"My goal is simple. It is complete understanding of the universe, why it as it is and why it exists at all. - Stephen Hawking",
"If you wish to make an apple pie truly from scratch, you must first invent the universe. - Carl Sagan",
"WATT is the unit of power?",
"Absolute zero is cool.",
"Anything that doesn't matter has no mass.",
"This message was written entirely with recycled electrons.",
"I took a physics course that was so hard I couldn't find the classroom.",
"I can travel through time and I do ... at the unremarkable rate of one second per second.",
"A rolling stone gathers momentum.",
"A probability is a desperate attempt of chaos to become stable.",
"If the Titanic had struck a Heisenberg, would it still be floating?",
"All coordinate systems are equal, but some are more equal than others.",
"Entropy isn't what it used to be...",
"A day without fusion is like a day without sunshine.",
"Wanted, dead or alive : Schroedinger's cat.",
"Curiosity *may* have killed Schrödinger's cat.",
"A Black Hole is a tunnel at the end of light.",
"Whatever this is, it is a matrix.")

		function MakeArray()

		{
			
this.length = MakeArray.arguments.length

			for (var i = 0; i < this.length; i++)
			this[i+1] = MakeArray.arguments[i]

		}



		function randomize(the_number)

		{

			now=new Date;
			tmp=now.getSeconds()*now.getMinutes();
			tmp=Math.sin(tmp);
			if (tmp<0)
				tmp=-1*tmp;
			rnd=Math.ceil(tmp*20);
		}
