
// ==============================================
// Copyright 2004 by CodeLifter.com
// Free for all; but please leave in this header.
// ==============================================

var Quotation=new Array() // do not change this!

// Set up the quotations to be shown, below.
// To add more quotations, continue with the
// pattern, adding to the array.  Remember
// to increment the Quotation[x] index!

Quotation[0] = "Think Different.";
Quotation[1] = "Zune&reg; is the new black.";
Quotation[2] = "Thats a cool song, send it to me...oh no wait, you cant. <a href=\"http://www.zune.net/en-us/support/usersguide/sharing/zunetozune.htm\">Can you squirt?</a>";
Quotation[3] = "Zune&reg; is the Mac of MP3 players, the cool and unique minority." ;
Quotation[4] = "Its not a square, its not a circle and its definitely not a friggin scroll wheel. Its a <a href=\"http://en.wikipedia.org/wiki/Squircle\">squircle</a>!";
Quotation[5] = "They said <a href=\"http://www.smh.com.au/news/digital-music/local-zune-early-adopters-warned-to-wait/2007/03/07/1173166764794.html\">not to use it here</a>, so we did.";
Quotation[6] = "Zune&reg;, its like an iPod...but better";
Quotation[7] = "Roses are red, violets are blue, I have a Zune&reg;, and so should you";
Quotation[8] = "Mixview - <a href=\"http://gizmodo.com/5050410/microsoft-beats-apples-itunes-genius-with-mixview\">it makes Genius look like a boring Windows application</a>";


// ======================================
// Do not change anything below this line
// ======================================
var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();
