	function randquote(){
	    var randquote = new Array();
		randquote[0]='Woo! More';
		randquote[1]='I like it';
		randquote[2]='Nice one';
		randquote[3]='\'ere, \'ave a kitten!';
		randquote[4]='Sunshine Elephant would &trade;';
		randquote[5]='Phantastic!';
		randquote[6]='WOO YAY HOUPLA';
		randquote[7]='Oh my, that is rather lovely';
		randquote[8]='You is genius you is';
		randquote[8]='Is it real?';
		randquote[9]='Jamaica';
		randquote[10]='Hatstand!';
		randquote[11]='wtfayboa?';
		randquote[12]='one can\'t spell Jamaica!';
		var randnum=Math.round(randquote.length*Math.random()-1);
		if(!randquote[randnum]){randnum=1;}
		if(document.forms[0].message)
		{
		document.forms[0].message.value=document.forms[0].message.value+randquote[randnum]+"\n";
		}
	}
	randquote();
