// JavaScript Document

var imageArray = [
	"Here are my feet.",
	"The devil is in the details. I like details.",
	"I cut and measure.",
	"Building the web one site at a time.",
	"Folding paper since... forever.",
	"Centering text in my sleep since 1993.",
	"Does not watch American Idol.",
	"I know what you did last summer.",
	"Born to be riled.",
	"Design is the Pitts.",
	"Not very good at 'Through the Fire and the Flames'",
	"You know.. for kids!",
	"Let's talk about it over salsa.",
	"Du bist immer die bombe.",
	"&lt;!-- no comment --&gt;",
	"Likely to school you at Super Mario Bros.",
	"I can estimate down to the nearest pixel.",
	"So proficient at CSS, sometimes I go by em."
];


function generateRandomText() {
		
		randomSection = Math.floor(Math.random() * 18);
		randomText = imageArray[randomSection];
		
		return randomText;
		
}