// Quote of the Day for AhmedSiddiqui.net
// ver 0.0.1 by Ahmed Siddiqui

//store the quotations in arrays
quotes = new Array(6);

quotes[0] = "I was pleasantly surprised by the results of TMWriters! -- Charles S.";
quotes[1] = "I got my requested paper in less than 2 days. Amazing! -- Jack W.";
quotes[2] = "Two thumbs up! -- Mark T.";
quotes[3] = "Never seen such a great service! -- O. Thomson";
quotes[4] = "Great customer service, great people -- David L.";
quotes[5] = "I got an 'A'. Need I say more? -- Lily T.";
/*
quotes[6] = "I'd rather regret the things I have done than the things I have not -- Unknown";
quotes[7] = "It's a small world. You gotta use your elbows a lot -- Unknown";
quotes[8] = "Please keep still and only watchen astaunished the blinkenlights -- Unknown";
quotes[9] = "I will either find a way, or make one -- Myself";
quotes[10] = "Don't necessarily play to win. Do play not to lose -- Unknown";
quotes[11] = "To reject risk is to reject life -- Unknown";
quotes[12] = "It's not too late. One day, it will be -- Unknown";
quotes[13] = "Better die standing than live on your knees -- Unknown";
quotes[14] = "Security is when everything is settled, when nothing can happen to you; security is the denial of life -- Unknown";
quotes[15] = "Laugh and the world laughs with you. Cry and the world laughs louder -- Unknown";
quotes[16] = "Smile, it makes people wonder what you're thinking -- Unknown";
quotes[17] = "I'm a nobody, nobody is perfect, therefore I'm perfect -- Unknown";
quotes[18] = "If you like it, do it. If you don't like it, do it. You might like it -- Unknown";
quotes[19] = "You should never underestimate the predictability of stupidity -- Bullet Tooth Tony";
*/

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write(quotes[index]);

//done


