var s_userAgent = navigator.userAgent.toLowerCase();
var b_mac = s_userAgent.indexOf('mac') != -1;
var b_transitions = (s_userAgent.indexOf('msie 5') != -1 || s_userAgent.indexOf('msie 6') != -1) && s_userAgent.indexOf('opera') == -1;

var Tscr_LOOK = {
	// scroller box size: [width, height]
	'size' : [120, 120],
	// a length of a gap between two neighboring items, pixels
	'distance' : 100,
	'item_w' : 200,
	// 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_BEHAVE = {
	// if scrolling mode is auto (true / false); 
	'auto'  : true, 
	// if scrolling direction is vertical (true / false, false means horisontal)
	'vertical' : b_transitions ? true: true,
	// scrolling speed, pixels per 50 miliseconds;
	// for auto mode use negative value to reverse scrolling direction
	'speed' : 2,
	'interval' : 30,
	'zindex':1,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true
},

// a data to build scroll window content
Tscr_ITEMS = [

{
	'file' : '',
	'content' : '<BR><font color=white><b>If you are better informed ...</b></font>',
	'pause_b' : 3,
	'pause_a' : 0,
	'transition' : 'revealTrans(TRANSITION=12,DURATION=1)'

},
{
	'file' : '',
	'content' : '<font color=white><b>you will be better prepared to avoid costly legal pitfalls.<p align=right>Chip Cooper, Esq.<\/p></b></font>',
	'pause_b' : 3,
	'pause_a' : 0,
	'transition' : 'revealTrans(TRANSITION=12,DURATION=1)'

},{
	'file' : '',
	'content' : '<BR><font color="white"><b>FREE newsletter - Website Legal Alert</b></font',
	'pause_b' : 3,
	'pause_a' : 0,
	'transition' : 'revealTrans(TRANSITION=12,DURATION=1)'

},{
	'file' : '',
	'content' : '<BR><font color="white"><b>Subscribe Now!<p align="right">Learn More.<\/P></b></font',
	'pause_b' : 3,
	'pause_a' : 0,
	'transition' : 'revealTrans(TRANSITION=12,DURATION=1)'

}
// 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
];
