// JavaScript Document


var text = new Array();

text[0] = "Hi, I'm Jon";
text[1] = "Welcome";
text[2] = "I like pizza";
text[3] = "<a href='mailto:jon@epyks.net?subject=So I was on your awesome website...'>Jon@epyks.net</a> , drop me an email";
text[4] = "Check out my music!";
text[5] = "Download a free template";
text[6] = "Leave a comment on my blog";
text[7] = "Take a look at my videos";
text[8] = "Don't forget to stop by the links at the bottom";
text[9] = "Oh shi-";

var randValue = Math.floor(Math.random() * text.length);
document.write(text[randValue]);
