var Tscr_LOOK1 = {
	// scroller box size: [width, height]
	'size' : [275, 220],
	// a length of a gap between two neighboring items, pixels
	'distance' : 10,
	'item_w' : 200,
	// for on-demand mode: image for scrolling items backward 
	// [left, top, width, height, sorce_file]
	'up' : [3, 60, 16, 16, 'tsp_files/aup.gif'], 
	// for on-demand mode: image for scrolling items forward 
	// [left, top, width, height, sorce_file]
	'dn' : [3, 110, 16, 16, 'tsp_files/adn.gif']
},

Tscr_BEHAVE1 = {
	// if scrolling mode is auto (true / false); 
	'auto'  : false, 
	// if scrolling direction is vertical (true / false, false means horisontal)
	'vertical' : true, 
	// scrolling speed, pixels per 50 miliseconds;
	// for auto mode use negative value to reverse scrolling direction
	'speed' : 2,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true
},

// a data to build scroll window content
Tscr_ITEMS1 = [
{
	// file to get content for item from; if is set 'content' property doesn't matter
	// only body of HTML document is taken to become scroller item content
	// note: external files require time for loading 
	// it is RECOMMENDED to use content property to speed loading up
	// doesn't work in Opera
	'file' : 'tsp_files/feedback.htm',
	// string to be displayed as item content, 
	// is RECOMMENDED to be used as an alternative to 'file' property
	'content' : '',
	// pause duration when item top gets top of the scroller box, seconds
	// ignored in on-demand mode while scrolling forward
	'pause_b' : 1,
	// pause duration when item top gets top of the scroller box, seconds
	// ignored in on-demand mode while scrolling forward
	'pause_a' : 1
}

];
