//
/*************************************************************************************************
*			     Series Information Database
*          ==============================
*
* Created by Adrian Jones, woodsgood.ca
*
*
*									- EDIT  WITH CARE ! -
*
*/
/***************************** BOOK SERIES INFORMATION *********************************************/




var seriesArr = new Array(); 				// series category array
var i=0;
var s_name=0;
var s_author=1;
var s_books=2;				// order is latest first (e.g. vol 3, vol 2, vol 1
var s_delim=",";

// seriesArr[i++] = ["series_name","Jseries_author","books_in_series"];

seriesArr[i++] = ["Annabella and the ...","JC Sulzenko","221,220"];
seriesArr[i++] = ["Children of the Amulet","L. M. Quinpool","257,78,77"];
seriesArr[i++] = ["Crimson Series","Patricia Kathleen McCarthy","334,335,336"];
seriesArr[i++] = ["Great Adventures Of Incredible Smalls","George Laidlaw","341,254,185,186,187,188,189,190,191,192,193,194"];
seriesArr[i++] = ["Large Adventures Of Incredible Smalls","George Laidlaw","144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175"];
seriesArr[i++] = ["Les grandes aventures des Incroyables Petit","George Laidlaw","295,296,176,177,178,179,180,181,182,183,184"];
seriesArr[i++] = ["Léo et Julien...","André Paul","262,261"];
seriesArr[i++] = ["Santa...","Bernard J. Muzeen","291,290,289,288,287,286,285,284,283,282,281,280"];
seriesArr[i++] = ["The Trivia Guys","Randy Ray and Mark Kearney","53,54,55,56,57,58,59,60,359"];
// seriesArr[i++] = ["Mathematics Study Guides and Workbooks","P.L. Khanna","305,306,307,308,309,310,311,312,313"];
seriesArr[i++] = ["The Ottawa Valley Saga Series","Donella Dunlop","87,324,325"];
// seriesArr[i++] = ["Poems for Children","Kalli Dakos","350,349,348,347,346,345,344,343,342"];
// seriesArr[i++] = ["Inner Voices Series","Barry Alder","357,358"];



//
