var Tscr_LOOK0 = {
	// scroller box size: [width, height]
	'size' : [500, 170],
	// a length of a gap between two neighboring items, pixels
	'distance' : 0,
	'item_w' : 500,
	's_i':'TScrItem1',
	's_b':'TScrBody1',
	// for on-demand mode: image for scrolling items backward 
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'up' : [0, 0, 16, 16, 'tsp_files/alf.gif','tsp_files/malf.gif'], 
	// for on-demand mode: image for scrolling items forward 
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'dn' : [100, 0, 16, 16, 'tsp_files/art.gif', 'tsp_files/mart.gif']
},
Tscr_BEHAVE0 = {
	// if scrolling mode is auto (true / false); 
	'auto'  : true,
	// if scrolling direction is vertical (true / false, false means horisontal)
	'vertical' : true,
	// scrolling speed, pixels per interval;
	// for auto mode use negative value for speed key to reverse scrolling direction
	'speed' : .51,
	'interval' : .5,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true,
	'zindex':5
}

// a data to build scroll window content
Tscr_ITEMS0 = [
{
	
	'file': 's1_data/cont1.html',
	// string to be displayed as item content, 
	// is RECOMMENDED to be used as an alternative to 'file' property
	'content': 'Alternative content for NS4.x and Opera',
	// pause duration when item top gets top of the scroller box, seconds
	// ignored in on-demand mode while scrolling forward
	'pause_b': 0,
	// pause duration when item bottom gets bottom of the scroller box, seconds
	// ignored in on-demand mode while scrolling backward
	'pause_a' : 0,
	
	'transition' : 'revealTrans(TRANSITION=12,DURATION=1)'
}
];