var ARRAY_SIZE = 13;

var aQuote;
var aTxt = new Array(ARRAY_SIZE);
var aRef = new Array(ARRAY_SIZE);

//Sansho Vol.2 Num.3 p.3
// "Reflections on the Limits of Aikido for Future Teachers
aTxt[0] = 'There is no way to teach the essence of the art '
        + 'to the student who holds an uncommitted sword.';
aRef[0] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.2
// "Guildelines for Training"
aTxt[1] = 'Practice and apply your technique with maximum effort<BR>'
        + 'so that you come to know your limitations and can learn to '
        + 'extend them.'
aRef[1] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.2
// "Guildelines for Training"
aTxt[2] = 'Study and be aware of your own problems and limitations '
         + 'by observing others.'
aRef[2] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.2
// "Guildelines for Training"
aTxt[3] = 'Cultivate your power of observation.'
aRef[3] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.2
// "Guildelines for Training"
aTxt[4] = 'Keep your mind open to the individual characteristics '
         + 'which vary from person to person.'
aRef[4] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.2
// "Guildelines for Training"
aTxt[5] = 'Confirm the basic techniques and apply them with minimum '
        + 'effort.'
aRef[5] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.2
// "Guildelines for Training"
aTxt[6] = 'Learn to control yourself and yet make the technique effective.'
aRef[6] = 'T.K. Chiba';

//Sansho Vol.4 Num.3 p.7
// "The Great Heavenly Wind"
aTxt[7] = 'TENPUKAN (the House of Heavenly Wind)'
aRef[7] = 'T.K. Chiba';

//Sansho Vol.4 Num.4 p.1
// Cover Story
aTxt[8] = 'Develop an introspective attitude in training, with a more '
         + 'serious eye on self-examination.'
aRef[8] = 'T.K. Chiba';

//Sansho Vol.4 Num.4 p.1
// Cover Story
aTxt[9] = 'How can you compare the beauty of a cherry flower with that '
         + 'of a rose?'
aRef[9] = 'Unknown Zen Master';

//Sansho Vol.5 Num.4 p.2
// "Aikido and Children"
aTxt[10] = 'The true value of individuals cannot be found by comparing one '
         + 'with another.'
aRef[10] = 'T.K. Chiba';

//Sansho Vol.5 Num.4 p.2
// "Aikido and Children"
aTxt[11] = 'There is no such thing as a failure or a loser in life, except '
         + 'when we become a failure or a loser in ourselves.'
aRef[11] = 'T.K. Chiba';

//Sansho Vol.8 Num.1&2 p.3
// "After Ten Years"
aTxt[12] = 'Gate, Gate, Paragate, Parasamgate, Bodhi Svaha.'
aRef[12] = 'Prajnaparamita-Hrdaya [Heart] Sutra';
          //Gone, gone, gone over, gone fully over. Awakened! So be it!

aQuote = new Array(aTxt,aRef);
