// structure that describes columns of the table and their type
var TABLE_CAPT = {
	'names' : ['Type of suite', 'Dec 26<small>th</small> - Jan 3<small>rd</small>, 2004', 'Jan 4<small>th</small> - Apr 10<small>th</small>, 2004', 'Apr 11<small>th</small> - Jun 30<small>th</small>, 2004', 'Jul 1<small>st</small> - Aug 22<small>nd</small>, 2004', 'Aug 23<small>rd</small> - Dic 25<small>th</small>, 2004'],  // columns titles
	'types' : [STR, STR, STR, STR, STR, STR] // standard types (STR, NUM) or custom compare function
};

var TABLE_CAPT2 = {
	'names' : ['Tipo de suite', 'Dic 26 - Ene 03, 2004', 'Ene 4 - Abr 10, 2004', 'Abr 11 - Jun 30, 2004', 'Jul 01 - Ago 22, 2004', 'Ago 23 - Dic 25, 2004'],  // columns titles
	'types' : [STR, STR, STR, STR, STR, STR] // standard types (STR, NUM) or custom compare function
};

var TABLE_CAPT3 = {
	'names' : ['Type of suite', 'Mar 15th - Apr 27th, 2003', 'Apr 28th - Aug 20th, 2003', 'Aug 21st - Dec 25th, 2003'],  // columns titles
	'types' : [STR, STR, STR, STR] // standard types (STR, NUM) or custom compare function
};

var TABLE_CAPT4 = {
	'names' : ['Tipo de suite', 'Mar 15 - Abr 27, 2003', 'Abr 28 - Ago 20, 2003', 'Ago 21 - Dic 25, 2003'],  // columns titles
	'types' : [STR, STR, STR, STR] // standard types (STR, NUM) or custom compare function
};

// structure that describes visual aspects of the table 
var TABLE_LOOK = {
	'params' : [3, 1], // [cellpadding,cellspacing]
  	'colors' : ['#B8E3F6', 'white','#FDD78E'], // background colors for [even,odd,mouseovered,marked] rows
  	'freeze' : [0, 0], // how many rows to skip [at_the_top, at_the_bottom] when applying effects 
	'paging' : [
		25, // page size (0 - no paging)
		'<img src=ttp_files/custom_imgs/first.gif border=0 alt="first page">', // html for first page link
		'<img src=ttp_files/custom_imgs/prev.gif border=0 alt="previous page">',  // html for previous page link
		'<img src=ttp_files/custom_imgs/next.gif border=0 alt="next page">', // html for next page link
		'<img src=ttp_files/custom_imgs/last.gif border=0 alt="last page">' // html for last page link
	],
	'sorting' : [
		'<img src=ttp_files/custom_imgs/asc.gif border=0 height=4 width=8 alt="sort descending">', // html for ascending sorted state icon (text)
		'<img src=ttp_files/custom_imgs/desc.gif border=0 height=4 width=8 alt="sort ascending">', // html for descending sorted state icon (text)
		'<img src=ttp_files/custom_imgs/asds.gif border=0 height=9 width=8 alt="sort ascending">'  // html for unsorted state icon (text)
	],
  	'filter' : 0 // filter 0 - off, 1 - substring, 2 - match, 4 - regexp filter (e.g. 1+2+4 means all filters on)
};