today = new Date(); //..get date and time
x = today.getHours(); //..pull out the hours

function NextRandomNumber() {
	var hi = this.seed / this.Q;
	var lo = this.seed % this.Q;
	var test = this.A * lo - this.R * hi;
	if (test > 0)
		this.seed=test;
	else
		this.seed = test + this.M;
	return (this.seed * this.oneOverM);
}
var rand = new RandomNumberGenerator();
var greeting = ("Welcome!");

function RandomNumberGenerator() {
	var d = new Date();
	this.seed = 2345678901 +
		(d.getSeconds() * 0xFFFFFF) + (d.getMinutes() * 0xFFFF);
	this.A=48271;
	this.M = 2147483647;
	this.Q = this.M / this.A;
	this.R = this.M % this.A;
	this.oneOverM = 1.0 / this.M;
	this.next = NextRandomNumber;
	return this;
}
function random11() {
	return Math.round(23 * rand.next());
}


q = random11();
var quip = (""); 
var quipper = ("");
quip=q;

if (q == 0) {
	quip = ("A lot of people in Silicon Valley still think the creative process is about a bunch of thirtysomethings sitting on a couch, making up jokes. And the converse is true: Hollywood thinks technology is something you just buy.")
	quipper = ("Steve Jobs");
}
if (q == 1)	{
	quip= ("We have only begun to invent what will be possible. People are pioneering new content that has the immediacy of television, the depth of print and the personal adaptability of computer software.... Science has opened the door, but artistry and imagination will take us through it.")
	quipper= ("Paul Allen");
}

if (q == 2)	{
	quip= ("The medium is the message.")
	quipper= ("Marshall McLuhan");
}
if (q == 3)	{
	quip= ("The idiots that went out there and said, 'Free! Free! Free! are all back skateboarding on Santa Monica Boulevard.... For the rest of us, the laws of gravity and economics are still in place.")
	quipper= ("Doug McCormick, on the end of free content on the Internet");
}
if (q == 4)	{
	quip= ("Any sufficiently advanced technology is indistinguishable from magic.")
	quipper = ("Arthur C. Clarke");
}
if (q == 5)	{
	quip= ("Make everything as simple as possible, but not simpler.")
	quipper = ("Albert Einstein");
}

if (q == 6)	{
	quip= ("Live forward. Understand backward. Lean into change.")
	quipper = ("Jim Bellows, 1922-2009");
}

if (q == 7)	{
	quip= ("Who in their right mind would use a computer to buy books?")
	quipper = ("Ted Papes, CEO of Prodigy, ca 1991");
}
if (q == 8)	{
	quip= ("It turns out that euphoria is not a business strategy.")
	quipper = ("Louis Rossetto, Wired Ventures");
}

if (q == 9)	{
	quip= ("On the Internet, no one knows you're a dog.")
	quipper = ("Peter Steiner");
}
if (q == 10) {
	quip= ("Vision without action is a daydream. Action without vision is a nightmare.")
	quipper= ("Japanese proverb");
}

if (q == 11) {
	quip= ("Never talk when you can nod, and never write when you can talk. I would add, never put it in an e-mail.") 
	quipper= ("Eliot Spitzer, former NY Attorney General");
}

if (q == 12) {
	quip= ("There's a certain amount of panic among media owners. Most of [them] are run by 50- or 60-year-olds who have trouble getting it, and who really don't want to see change on their watch.") 
	quipper= ("Martin Sorrell, chief executive of WPP");
}

if (q == 13) {
	quip= ("In the long run, we are all the Grateful Dead.") 
	quipper= ("Paul Krugman, NYT 6-06-08");
}


if (q == 14) {
	quip= ("Start immediately. Do the best you can.") 
	quipper= ("Jim Bellows");
}
if (q == 15) {
	quip= ("Children should get two things from their parents: Roots and wings.") 
	quipper= ("Johann Wolfgang von Goethe");
}
if (q == 16) {
	quip= ("Create like a god, command like a king, work like a slave.") 
	quipper= ("Constantin Brancusi");
}
if (q == 17) {
	quip= ("You can't create time. You can only steal it, reallocate it, use it or waste it.") 
	quipper= ("Esther Dyson");
}
if (q == 18) {
	quip= ("Vigorous writing is concise. A sentence should contain no unnecessary words, a paragraph no unnecessary sentences, for the same reason that a drawing should have no unnecessary lines and a machine no unnecessary parts.") 
	quipper= ("William Strunk Jr.");
}
if (q == 19) {
	quip= ("The future is here. It's just not evenly distributed yet.") 
	quipper= ("William Gibson");
}
if (q == 20) {
	quip= ("Don't live down to expectations. Go out there and do something remarkable.") 
	quipper= ("Wendy Wasserstein");
}
if (q == 21) {
	quip= ("We must [place] science in its rightful place alongside music, art and literature as an indispensable part of what makes life worth living.") 
	quipper= ("Brian Greene, Columbia physics professor");
}
if (q == 22) {
	quip= ("Men do not quit playing because they grow old; they grow old because they quit playing.") 
	quipper= ("Oliver Wendell Holmes");
}
if (q == 23) {
	quip= ("Everything we did was for the first time.") 
	quipper= ("Walter Cronkite");
}


greeting = ('<span class="quoteText">' + quip + '</span><p align=left><span class="attribText">--' + quipper + '</span></p>');


document.write (greeting);