// ==============================================
// 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] = '<a href="/store/"><img src="media/images/ads/adults.png" alt="Perfect for..." width="300" height="200" border="0" /></a>';
Quotation[1] = '<a href="/store/"><img src="media/images/ads/babies.png" alt="Perfect for..."width="300" height="200" border="0" /></a>';
Quotation[2] = '<a href="/store/"><img src="media/images/ads/edu_orange.png" alt="Perfect for..." width="300" height="200" border="0" /></a>';
Quotation[3] = '<a href="/store/"><img src="media/images/ads/gift_purple.png" alt="Perfect for..." width="300" height="200" border="0" /></a>';
Quotation[4] = '<a href="/store/"><img src="media/images/ads/kids_teens.png" alt="Perfect for..." width="300" height="200" border="0" /></a>';
Quotation[5] = '<a href="/store/"><img src="media/images/ads/toddlers.png" alt="Perfect for..." width="300" height="200" border="0" /></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();
