var Tscr_LOOK = {
	// scroller box size: [width, height]
	'size' : [225, 195],
	// a length of a gap between two neighboring items, pixels
	'distance' : 25,
	'item_w' : 200,
	's_i':'TScrItem1',
	's_b':'TScrBody1',
	  // image for 'scrolling items backward' icon (on-demand mode only)
	  // [left, top, width, height, sorce_file, mouseover_sorce_file]**
	'pr' : [0, 175, 185, 20, '/assets/js/scroller/images/prv.gif','/assets/js/scroller/images/prv_ovr.gif'], 
	 // image for 'pause' icon (autoscroll mode only)
	 // [left, top, width, height, sorce_file, mouseover_sorce_file]**
	'pa' : [185, 175, 20, 20, '/assets/js/scroller/images/pau.gif','/assets/js/scroller/images/pau_ovr.gif'],
  	// image for 'resume' icon (autoscroll mode only)
  	// [left, top, width, height, sorce_file, mouseover_sorce_file]**
  	're' : [185, 175, 20, 20, '/assets/js/scroller/images/res.gif','/assets/js/scroller/images/res_ovr.gif'],
	// image for 'previous item' icon (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]**
	'nx' : [205, 175, 20, 20, '/assets/js/scroller/images/nxt.gif','/assets/js/scroller/images/nxt_ovr.gif']
},



Tscr_BEHAVE = {

	// 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.0,

	// buttons visible on mouse over - true, always visible - false

	'hide_buttons' : true

};