        var timeout;
	var Frase = new Array;
	var RandomFrase;
	    Frase[00] = "\"Of all the Things I've ever Lost, I miss my Mind the most.\""
	    Frase[01] = "\"I love you all, but you're all f*****g mad!\""
	    Frase[02] = "\"I hate these fucking stretch bastards junk pimp mobiles!\""
	    Frase[03] = "\"I know I ain't going to fucking live to be an old man. I know that.\""
	    Frase[04] = "\"You get one and you can't stop. It becomes an addiction.\""
	    Frase[05] = "\"My mother was an amateur singer, my father was an amateur drunk.\""
	    Frase[06] = "\"I'm not the greatest singer in the world, but I do give people entertainment.\""
	    Frase[07] = "\"I never go on stage drunk or stoned or anything.\""
	    Frase[08] = "\"I like the smell of armits in the morning. It's like victory.\""
	    Frase[09] = "\"I'm not picking up dog shit. I'm a rock star.\""
	    Frase[10] = "\"Its like Dr. Doolittle in this fucking house here.\""
        	RandomFrase = Frase[Math.floor(Math.random() * Frase.length)];

document.write('<font face="Arial" style="font-size: 8pt" color="#666666">' + RandomFrase + '- Ozzy Osbourne')

