// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Yo soy alguien que emplea a fondo sus cinco sentidos para con ello crear la ilusión de un sexto...";
Quotation[1] = "Para los que creen, ninguna explicacion será necesaria.<br />Para los que no, ninguna será suficiente...";
Quotation[2] = "Un Mentalista es alguien que estudia la mente.<br /> Yo defino lo que hago como ilusionismo sicológico";
Quotation[3] = "Esto no es magia tradicional, olvídese del conejo en el sombrero y prepárese para ser asombrado!";



// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
document.write("&quot;" + Quotation[whichQuotation] + "&quot;");