var Tscr_LOOK0 = {
	// scroller box size: [width, height]
	'size' : [210, 194],
	// a length of a gap between two neighboring items, pixels
	'distance' : 0,
	'item_w' : 240,
	// css classes for for item text
	's_i':'TScrItem1',
	// css classes for for scroller box
	's_b':'TScrBody1',
	// image for 'pause' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'pa' : [360, 80, 16, 16,,'tsp_files/pixel.gif'],
	// image for 'resume' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	're' : [360, 80, 16, 16,,'tsp_files/pixel.gif'],
	// image for 'next item' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'nx' : [380, 80, 16, 16,,'tsp_files/pixel.gif'],
	// image for 'previous item' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'pr' : [340, 80, 16, 16,,'tsp_files/pixel.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 50 miliseconds;
	// for auto mode use negative value to reverse scrolling direction
	'speed' : 1,
	'interval' : 20,
	'zindex':1,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true
},
Tscr_BEHAVE1 = {
	// if scrolling mode is auto (true / false); 
	'auto'  : true, 
	// if scrolling direction is vertical (true / false, false means horisontal)
	'vertical' : false, 
	// scrolling speed, pixels per 50 miliseconds;
	// for auto mode use negative value to reverse scrolling direction
	'speed' : 1,
	'interval' : 20,
	'zindex':1,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true
},

Tscr_BEHAVE2 = {
	// 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 50 miliseconds;
	// for auto mode use negative value to reverse scrolling direction
	'speed' : -1,
	'interval' : 20,
	'zindex':1,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true
},

// a data to build scroll window content
Tscr_ITEMS0 = [
{
	'file' : '',
	'content' : '<img src="/slider1/s01.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<img src="/slider1/s02.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
}
,
{
	'file' : '',
	'content' : '<img src="/slider1/s03.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
}

// add as many items here as you need.
// don't forget to separate them with commas, make sure there is no comma after the last item
];

// a data to build scroll window content
Tscr_ITEMS1 = [
{
	'file' : '',
	'content' : '<img src="/slider2/b01.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<img src="/slider2/b01.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
}
,
{
	'file' : '',
	'content' : '<img src="/slider2/b01.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
}

// add as many items here as you need.
// don't forget to separate them with commas, make sure there is no comma after the last item
];

// a data to build scroll window content
Tscr_ITEMS2 = [
{
	'file' : '',
	'content' : '<img src="/slider2/s01.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<img src="/slider2/s02.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
}
,
{
	'file' : '',
	'content' : '<img src="/slider2/s03.jpg">',
	'pause_b' : 2,
	'pause_a' : 0
}

// add as many items here as you need.
// don't forget to separate them with commas, make sure there is no comma after the last item
];

