// structure that describes columns of the table and their type
var TABLE_CAPT = {
	'names' : ['images', 'images', 'images'],  // columns titles
	'types' : [STR, STR, STR] // standard types (STR, NUM) or custom compare function
};

//estructura para los paquetes
//Enchanted
var TABLE_CAPT2 = {
	'names' : ['This incredible honeymoon package includes:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//Fascination
var TABLE_CAPT3 = {
	'names' : ['This incredible honeymoon package includes:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//Unforgettable
var TABLE_CAPT4 = {
	'names' : ['This incredible honeymoon package includes:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//Wedding Package
var TABLE_CAPT5 = {
	'names' : ['Wedding supplement includes:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//Paquete de boda
var TABLE_CAPT51 = {
	'names' : ['El suplemento de boda incluye:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//Wedding Package Groups
var TABLE_CAPT6 = {
	'names' : ['Group Size','Jan 02 - Apr 15, 2003','Apr 16 - Dec 19, 2003'],  // columns titles
	'types' : [STR,STR,STR] // standard types (STR, NUM) or custom compare function
};

//Paquetes de boda
var TABLE_CAPT61 = {
	'names' : ['No. habitaciones','Ene 02 - Abr 15, 2003','Abr 16 - Dic 19, 2003'],  // columns titles
	'types' : [STR,STR,STR] // standard types (STR, NUM) or custom compare function
};

//estructura para el paquete
//Encanto
var TABLE_CAPT7 = {
	'names' : ['Este increíble paquete lunamielero incluye:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//estructura para el paquete
//Fascinación
var TABLE_CAPT8 = {
	'names' : ['Este increíble paquete lunamielero incluye:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//estructura para el paquete
//Inolvidable
var TABLE_CAPT9 = {
	'names' : ['Este increíble paquete lunamielero incluye:'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//estructura para los documentos requeridos
var TABLE_CAPT12 = {
	'names' : ['<b>Documents Needed:</b>'],  // columns titles
	'types' : [STR] // standard types (STR, NUM) or custom compare function
};

//estructura para los documentos requeridos
var TABLE_CAPT13 = {
	'names' : ['<b>Documentación Requerida:</b>'],  // columns titles
	'types' : [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' : ['WHITE', '#FFE6FC','#FFBCF4','#FFCCFF'], // 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)
};

var TABLE_LOOK2 = {
	'params' : [3, 1], // [cellpadding,cellspacing]
  	'colors' : ['#FFE6FC', 'WHITE','#FFBCF4','#FFCCFF'], // 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)
};