// structure that describes columns of the table and their type
var SCHOOLSCAPT = [
   {
      'name' : 'School',
      'type' : STR
   },
   {
      'name' : 'Address',
      'type' : STR
   }
];

var SCHOOLSCAPT2 = [
   {
      'name' : 'School',
      'type' : STR
   },
   {
      'name' : 'Address',
      'type' : STR
   },
   {
      'name' : 'Last Update',
      'type'         : DATE,
      // date input format
      'format_input' : 'm/d/Y h:i:s A',
      // date output format
      'format_output': 'm/d/Y h:i:s A'
   }
 ];

// structure that describes visual aspects of the table
var SCHOOLSLOOK = {
	'structure' : [4, 0, 2, 3],
	'params' : [2, 0], // [cellpadding,cellspacing]
	'colors' : {
		'even'    : 'white',
		'odd': '#E5EBFB', //'#FFF9EA'
		'hovered': '#f5e7c0',
		'marked'  : '#C5FFBF'
	},
	'freeze' : [0, 0], // how many rows to skip [at_the_top, at_the_bottom] when applying effects
	'paging' : {
		'by' : 0, // page size (0 - no paging)
		'tt' : '<span class="point85font genericnoprint">%rcs Schools - Sort the list by clicking the column headings.</span>',
		'sh' : true
	},
	'sorting' : {
		'cl' : 0,
		'or' : 0

	},
	'filter' : {
		'type': 1 // filter 0 - off, 1 - substring, 2 - match, 4 - regexp filter (e.g. 1+2+4 means all filters on)
	},
	'css' : {
		'main'     : 'tabSchoolsTable0',
		'body'     : ['tabSchoolsBody0Col0','tabSchoolsBody0Col1','tabSchoolsBody0Col2','tabSchoolsBody0Col3','tabSchoolsBody0Col4'],
		'captCell' : 'tabCaptionCell0',
		'captText' : 'tabCaptionText0',
		'head'     : 'tabHeadCell1',
		'foot'     : 'tabFootCell0',
		'pagnCell' : 'tabPaging1',
		'pagnText' : 'tabPagingText1',
		'pagnPict' : 'tabPagingArrowCell1',
		'filtCell' : 'tabFilter0',
		'filtPatt' : 'tabFilterPattern0',
		'filtSelc' : 'tabFilterSelect0'
	}
};
