var NewsScrollerLook = {
  // scroller box size: [width, height]
  'size' : [725, 75],
  // a length of a gap between two neighboring items, pixels
  'distance' : 10,
  'item_w' : 0,
  // css classes for for item text
  's_i':'NewsItem1',
  // 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' : [660, 46, 16, 16,,'/scrollerscripts/mpau.gif'],
  // image for 'resume' control (autoscroll mode only)
  // [left, top, width, height, sorce_file, mouseover_sorce_file]
  're' : [640, 46, 16, 16,,'/scrollerscripts/mres.gif'],
  // image for 'next item' control (autoscroll mode only)
  // [left, top, width, height, sorce_file, mouseover_sorce_file]
  'nx' : [700, 46, 16, 16,,'/scrollerscripts/mnxt.gif'],
  // image for 'previous item' control (autoscroll mode only)
  // [left, top, width, height, sorce_file, mouseover_sorce_file]
  'pr' : [680, 46, 16, 16,,'/scrollerscripts/mprv.gif']
},

NewsScrollerBehavior = {
  // 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' : 15,
  'zindex':1,
  // buttons visible on mouse over - true, always visible - false
  'hide_buttons' : true
}

