function init(){
	changeText(7);
	// add function to generate the code for theQuote globally from here	
}
function changeText(n){
		var theQuote = new Array();
        theQuote[0] = " - Where everyone knows your name.";
		theQuote[1] = " welcomes careful drivers.";
		theQuote[2] = " - But it's a /good/ hurt!";
		theQuote[3] = " is watching you, with beady little eyes.";
		theQuote[4] = " is not to be confused with useful information.";
		theQuote[5] = " knows what you did last summer...";
		theQuote[6] = " lurks in the darkness of your mind.";
		theQuote[7] = " could really use a pizza...";
		theQuote[8] = " emits a high-pitched whine.";
		theQuote[9] = " will make you twitch @.x";
		theQuote[10] = " can not be held responsible for loss of hair or vision.";
		theQuote[11] = " shot the sheriff, but it didn't shoot the deputy.";
		theQuote[12] = " - Sing for absolution.";
		theQuote[13] = " - Download carefully.  Only YOU can prevent bandwidth fires!.";
		theQuote[14] = " reserves the right to reserve its rights.";
		theQuote[15] = " - For when you have too many better things to do.";
		theQuote[16] = " - Where the glass is half-full of emptiness.";
		theQuote[17] = " comes in seven fruity flavours!";
		theQuote[18] = " - a mystery, wrapped in an enigma, basted in lemon sauce.";
		theQuote[19] = " lights fires with its mind.";
		theQuote[20] = " will sit motionless for days if it suits its master plan.";
		theQuote[21] = " is the best website ever. Seriously.";
		theQuote[22] = " loves you thiiiiiiiis much!";
		theQuote[23] = " cares not for your petty whims, mortal.";
		theQuote[24] = ", for all your orbital death laser needs.";
		theQuote[25] = " wants your undergarments, and will take them by force if necessary.";
		theQuote[26] = " is actually a fungus.";
		theQuote[27] = " secretly collects ball bearings.";
		theQuote[28] = " - Its what's for breakfast.";
		theQuote[29] = " - [mandatory mother-in-law joke]";
		theQuote[30] = " tastes better with hot sauce.";
		theQuote[31] = " has no spoon.";
		theQuote[32] = " will not be defeated by the bees!";
		theQuote[33] = " likes hats.";
		theQuote[34] = ", because sometimes we all need to feel superior.";
		theQuote[35] = " - where a spoon can just be a spoon.";
		theQuote[36] = " needs more in-jokes.";
		theQuote[37] = " probes aliens for fun and profit.";
		theQuote[38] = " - Disqualified from the human race.";
		theQuote[39] = " has forty quotes now.  Yay.";

    var q = Math.floor(Math.random()*40);

	var theDesc = new Array();
		theDesc[1] = "The main page";
		theDesc[2] = "A thousand empty scrawlings, on a thousand broken walls";
		theDesc[3] = "The place of writings";
		theDesc[4] = "Here be angst and bouncing";
		theDesc[5] = "Digital art with a healthy dose of Jacel";
		theDesc[6] = "Some friends I've met along the way";
		theDesc[7] = "Hugme" + theQuote[q];
		theDesc[8] = "Tunes ish good";
		theDesc[9] = "So who is this freak, anyhow?";
		theDesc[10] = "What can /I/ do for /you/?";
		theDesc[11] = "No, dropping your pants and shouting doesn't work";
		theDesc[12] = "Plots, plans, coffee breaks and much more";
		theDesc[13] = "Anything to add, good sir?";
		theDesc[14] = "Leave a pawprint in the snow";

	emptyNode("description");
	var theNode = getObj("description");
	var newText = document.createTextNode(theDesc[n]);
	theNode.appendChild(newText);
	}

function emptyNode(elementID){
	var theNode = getObj(elementID);
	for (i=0;i< theNode.childNodes.length;i++){
		theNode.removeChild(theNode.childNodes[i]);
	}
}
function getObj(elementID){
	return document.getElementById(elementID);
}