// ==============================================
// 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=\"http://www.azukijuken.net/srtcont/saishu.html\">★★偏差値30台のへっぽこ受験生がアっという間に\"全国1位\"を達成した秘密とは？</a>";
Quotation[1] = "<a href=\"http://www.azukijuken.net/srtcont/saishu.html\">★中学受験を控えているお子さんをお持ちのお母さん<br>★勉強をやらせているのに成績が上がらない・・・とお悩みのお母さん<br>★塾・家庭教師に莫大な教育費をかけたくない・・・とお悩みのお母さん<br>★志望校に受かりたい！受からせたい！と「本気」で思っている方のみお読み下さい</a>";
Quotation[2] = "<a href=\"http://www.azukijuken.net/srtcont/yaruki.html\">★★★子供のやる気を育てる非常識な勉強法★★★<br>　この勉強法を試してみたいとお考えのあなたに<br>　３つプレゼントしたいものがあります。</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();


