// ==============================================
// 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] = "<div class=\"text\">We have found Mary Parks of Brightmedia to be an excellent choice when IBANZ required a new website.  The design was fresh and modern, a huge leap forward from our previous site.  Mary has been great to deal with, quick responses and achieving the work within budget and on time.  In an industry noted for its lack of such qualities Mary has stood out.</div><div class=\"name\"><strong>Gary Young</strong>, <span class=\"small\">CEO<br /><a href=\"http://ibanz.co.nz\" target=\"_blank\">IBANZ</a></span></div>";
Quotation[1] = "<div class=\"text\">Mary was unfailingly helpful, and always quick to understand what needed to be done and to ensure it got done to the highest possible quality. She was hugely productive, and never afraid to roll up her sleeves and get into trying new things.</div><div class=\"name\"><strong>Mark Evans</strong>, <span class=\"small\">Director<br /><a href=\"http://swaytech.co.nz\" target=\"_blank\">Swaytech Ltd</a></span></div>";
Quotation[2] = "<div class=\"text\">Mary is an accomplished web designer with an extensive knowledge of web tools and environments. She is a talented, pro-active designer and a highly capable member of any website project team.</div><div class=\"name\"><strong>Lawrie Dipple</strong>, <span class=\"small\">Operations Manager<br /><a href=\"http://www.epitiro.co.nz\" target=\"_blank\">Epitiro NZ Ltd</a></span></div>";





// ======================================
// 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();
