// structure that describes columns of the table and their type
var FUTUREGAMESCAPT = [
    {
        'name': '',
        'type': STR
    },
    {
    	'name': 'Date',
    	'type': DATE,
    	'format_input': 'F d Y',
    	'format_output': 'M d Y'
    },
    {
		'name' : 'Start Time',
		'type' : STR
	},
	{
		'name' : 'Level',
		'type' : STR
	},
	{
		'name' : 'Visiting Team',
		'type' : STR
	},
	{
		'name' : 'Home Team',
		'type' : STR
	},
	{
		'name' : 'Played At',
		'type' : STR
	},
		{
		'name' : 'Type',
		'type' : STR
	}
];

// structure that describes visual aspects of the table
	var FUTUREGAMESLOOK = {
	// 0 - caption,
	// 1 - header,
	// 2 - body,
	// 3 - footer,
	// 4 - paging,
	// 5 - filters
	'structure' : [4, 0, 2, 3],
	'params' : [1, 0], // [cellpadding,cellspacing]
	'colors' : {
		'even'    : 'white',
		'odd'     : '#f7f7f7', //'#FFF9EA'
		'hovered' : '#FFFFCC',
		'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 Game(s)&nbsp;&nbsp;&nbsp;<span class="point85fontblue genericnoprint">Sort the table 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/red_arrow_bullet_up.gif border=0 alt="Column sorted ascending">',
		// HTML for descending sorted state icon (text)
		//'ds' : '<img src=ttp_files/custom_imgs/red_arrow_bullet_down.gif border=0 alt="Column sorted decending">',
		// HTML for unsorted state icon (text)
		//'no' : '<img src=ttp_files/custom_imgs/red_x_bullet.gif border=0 alt="Column unsorted">'
		//'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'     : 'tabSectionGamesTable0',
		'body': ['tabFutureGamesBody0Col0', 'tabFutureGamesBody0Col1', 'tabFutureGamesBody0Col2', 'tabFutureGamesBody0Col3', 'tabFutureGamesBody0Col4', 'tabFutureGamesBody0Col5', 'tabFutureGamesBody0Col6', 'tabFutureGamesBody0Col7'],
		'captCell' : 'tabCaptionCell0',
		'captText' : 'tabCaptionText0',
		'head'     : 'tabHeadCell1',
		'foot'     : 'tabFootCell0',
		'pagnCell' : 'tabPaging1',
		'pagnText' : 'tabPagingText1',
		'pagnPict' : 'tabPagingArrowCell1',
		'filtCell' : 'tabFilter0',
		'filtPatt' : 'tabFilterPattern0',
		'filtSelc' : 'tabFilterSelect0'
	}
};


