// structure that describes columns of the table and their type
var SECTIONSCAPT = [
	{
		'name' : '',
		'type' : STR
	},
    {
		'name' : 'Class',
		'type' : STR
	},
	{
		'name' : 'Name',
		'type' : STR
	},
	{
		'name' : 'Representative',
		'type' : STR
	}
];

// structure that describes visual aspects of the table
var SECTIONSLOOK = {
	// 0 - caption,
	// 1 - header,
	// 2 - body,
	// 3 - footer,
	// 4 - paging,
	// 5 - filters
	'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' : '%rcs Sections&nbsp;&nbsp;&nbsp;<span class="point85fontblue genericnoprint">Sort by clicking the column headings.</span>', /* in this line you can use the following variables 1-bazed:
											%pgs total pages index
											%ind current page index
											%rcs total records found
										*/
		'sh' : true
	},
	'sorting' : {
		// HTML for ascending sorted state icon (text)
		//'as' : '<img src="ttp_files/custom_imgs/asc.gif" border="0" alt="Column sorted ascending">',
		// HTML for descending sorted state icon (text)
		//'ds' : '<img src="ttp_files/custom_imgs/desc.gif" border="0" alt="Column sorted decending">',
		// HTML for unsorted state icon (text)
		//'no' : '<img src="ttp_files/custom_imgs/asds.gif" border="0" alt="Column unsorted">',
		'cl' : 2,
		'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'     : 'tabSectionsTable0',
		'body'     : ['tabSectionsBody0Col0','tabSectionsBody0Col1','tabSectionsBody0Col2','tabSectionsBody0Col3','tabSectionsBody0Col4','tabSectionsBody0Col5'],
		'captCell' : 'tabCaptionCell0',
		'captText' : 'tabSectionsCaptionText0',
		'head'     : 'tabHeadCell1',
		'foot'     : 'tabFootCell0',
		'pagnCell' : 'tabPaging1',
		'pagnText' : 'tabPagingText1',
		'pagnPict' : 'tabPagingArrowCell1',
		'filtCell' : 'tabFilter0',
		'filtPatt' : 'tabFilterPattern0',
		'filtSelc' : 'tabFilterSelect0'
	}
};

var ARR_STRINGS = {
	'long_days' : ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
	'short_days' : ['Sun', 'Mon', 'Tue', 'Wen', 'Thu', 'Fri', 'Sat'],
	'long_month' : ['January','February','March','April','May','June','July','August','September','October','November','December'],
	'short_month' : ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
	'bad_month' : 'Parsing error: unknown month "%month_name"',
	'not_meet' : "Notice : Input date does not meet input date format."
};

