// ==============================================
// 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] = "The most random person I have ever met! <br/>&mdash; Scott Mills - Radio1 DJ";
Quotation[1] = "Cheesy! <br/>&mdash; Graham Norton";
Quotation[2] = "Fantastic Finger Flinger! <br/>&mdash; Jonathon Ross  .";
Quotation[3] = "A man you wouldn't play cards with! <br/>&mdash; Philip Schofield.";
Quotation[4] = "Britains answer to David Blaine! <br/>&mdash; Christian O'Connell. - XFM DJ.";
Quotation[5] = "Wonderful! <br/>&mdash; The Guardian .";
Quotation[6] = "Cheeky! <br/>&mdash; The Cheeky Girls";
Quotation[7] = "Madcap! &mdash; The Sun .";
Quotation[8] = "The king of all things silly! &mdash; Ben Elton";
Quotation[9] = "He's great! He juggles poo!! <br/>&mdash; Rohan, aged 6";
Quotation[10] = "The best thing to come out of Weston since Bristols sewage!! <br/>&mdash; Mrs Moore - Bristol.";
Quotation[11] = "Man, you're quick! <br/>&mdash; Simon Cowell";
Quotation[12] = "Mildly amusing. <br/>&mdash; Amanda Holden";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
//function showQuotation(){document.write("<blockquote><p>"+Quotation[whichQuotation]+"</p></blockquote>");}


function showQuotation(){document.write('<blockquote><span class="bqstart">&#8220;</span>'+Quotation[whichQuotation]+'<span class="bqend">&#8221;</span></blockquote>');}


