﻿// ==============================================
// 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] = "<font color=#FFD700>〝</font><a href=http://www.kalehk.com/design/design.php target=_top>包裝設計</a><font color=#FFD700>〞</font>";
Quotation[1] = "<font color=#FFD700>〝</font><a href=http://www.kalehk.com/minibus/minibus.php target=_top>小巴廣告</a><font color=#FFD700>〞</font>";
Quotation[2] = "<font color=#FFD700>〝</font><a href=http://www.kalehk.com/minibus/minibus_e.php target=_top>Minibus Advertisement</a><font color=#FFD700>〞</font>";
Quotation[3] = "<font color=#FFD700>〝</font><a href=http://www.kalehk.com/translation/translation.php target=_top>文件翻譯</a><font color=#FFD700>〞</font>";

var Q = Quotation.length;
var whichQuotation=Math.round(Math.random()*(Q-1));
function showQuotation(){document.write(Quotation[whichQuotation]);}
showQuotation();