
//-----------------------------------------------------------------------------
// FILE   : BrewerInfo.js (javascript include)
// USED BY: brewers.htm
// NOTES  : This declares one variable: a two dimensional array that contains
//		all brewer information.  Each brewer has Last Name, First Name, and
//		Extra Text.  The brewer's image filename is assumed to be:
//		LastName-FirstName_med.jpg as in Meisell-John_med.jpg.  Note that if
//		you want a single quote you have to insert it as \'
//		Add or remove entries here and they will show up on the brewers page.
// NOTES  : Be aware there is a javascript global variable that describes how many
//		columns in which to display the brewers.  Default was 3.
// NOTES  : If there are a large number of brewers (so many that loading this
//		page might take too long), set the javascript varv g_nNumRows in
//		brewers.htm which will automatically create Prev and Next links.
//		Alternatively, if you dont care and want to have all brewers on one page
//		then set that g_nNumRows to 1000 or so.
//-----------------------------------------------------------------------------

var g_aBrewer = new Array (
	//          Last Name      FirstName  Extra Text
	//          ------------   ---------  --------------------------------
  new Array ( 'Ankeney'    , 'Jay'    , 'This Journalist says: Seen this mess before, only mildy concerned' )
, new Array ( 'Boyce'      , 'Donna'  , 'CLUB Secretary. About time.. my hair\'s a-comin\' down' )
, new Array ( 'Cooper'     , 'Ron'    , 'Former Ex-officio old-timer w/mucho english' )
, new Array ( 'Cordrey'    , 'Dave'   , 'Hop Bittering Wizzard' )
, new Array ( 'Fafard'     , 'Steve'  , 'Masked XMas Party host' )
, new Array ( 'Jang'       , 'Andrew' , 'CLUB Activities Director. Git \'er done.' )
, new Array ( 'Harashevsky', 'Eric'   , 'Speak softly and.. keep on brewin\'' )
, new Array ( 'Patrick'    , 'Bill'   , 'FL homebrewer and huge fan of Najas' )
, new Array ( 'Peterson'   , 'Dave'   , 'Tha Mad scientist doin\' his thing' )
, new Array ( 'Ragon'      , 'Robert' , 'Ma Brewery fits right in ma \'Stang' )
, new Array ( 'Rosenfeld'  , 'Jason'  , 'Hop-loose jewboy.. Simcoe\'s ur friend!' )
, new Array ( 'Rowe'       , 'Kathryn', 'Got some fine bread bakin\' right here' )
, new Array ( 'Voisey'     , 'Chris'  , 'Mmm.. tasty tacos' )
, new Array ( 'Wilson'     , 'RON'    , 'A ton or two of grapes wouldn\'t hurt' )
, new Array ( 'Zach'       , ''       , 'Keep yer paw off my pigs ears Dave!' )
);
