// JavaScript Document

// Set up the text files to be used.
var theText = new Array() // do not change this


theText[0] = '"krispy kreme donuts and finding kittens makes work fun"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[1] = '"just electrocuted himself, not pleasant at all :c"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[2] = '"i think i just smoked an ant"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[3] = '"can&#39;t wait until christmas. GINGERBREAD LATTE! c:"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[4] = '"just kicked a frog in the head :| :| :| :| :| :| :| :| :|"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[5] = '"hates having to tiptoe around slugs, frogs and other slimy creatures in his garden"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[6] = '"GOT TO GET MY DUMBLEDORE FIX"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[7] = '"is drinking an innocent smoothie with takeaway pizza to restore my body&#39;s good/bad balance"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[8] = '"just eating a banana and an apple. i want a smoothie maker, i&#39;d never have to chew ever again"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[9] = '"texts postcode to 67999 for super hot girls near me. &lt;&#47;sarcasm&gt;"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[10] = '"hates how he&#39;s grown up and towels have stayed the same size"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';
theText[11] = '"should not read stories about doppelgängers"<br><a href="http://www.twitter.com/thesidpayne">@thesidpayne</a>';


// do not edit anything below this line

var j = 0
var p = theText.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Array()
   preBuffer[i].src = theText[i]
}
var whichText = Math.round(Math.random()*(p-1));
function showText(){
//This a wrapper for the text array it can be changed if need
document.write('<p class="thetext">'+theText[whichText]+'</p>');
}