// JavaScript Document
var tagLine = new Array;
tagLine[0] = "<em>website design</em> and maintenance.";
tagLine[1] = "<em>you finally</em> found it.";
tagLine[2] = "<em>you know you need</em> a new website.";
tagLine[3] = "<em>producer of quality</em> websites.";
tagLine[4] = "<em>thanks for</em> dropping by.";
tagLine[5] = "<em>I love</em> this stuff.";
tagLine[6] = "<em>cincinnati</em> web design.";
tagLine[7] = "<em>welcome to</em> my website.";
tagLine[8] = "<em>sometimes,</em> the square peg <em>will</em> fit.";
tagLine[9] = "<em>I've been</em> doing this for a long time.";
tagLine[10] = "<em>cincinnati</em> web design.";
//tagLine[11] = "<em>i say website</em> some say web site.";
//tagLine[12] = "<em>With enough</em> force, the square peg will fit";
//tagLine[13] = "<em>For when</em> mercy fails";
//tagLine[14] = "<em>Pants</em>";
phraseCnt = tagLine.length;
//javascript: picPhrase();
function picPhrase() {
randomNum = Math.floor ((Math.random() * phraseCnt))
trashTalk = tagLine[randomNum]
document.write (trashTalk)
}

// End hiding script from old browsers -->
