var Tscr_LOOK = {
	// scroller box size: [width, height]
	'size' : [181, 172],
	// a length of a gap between two neighboring items, pixels
	'distance' : 0,
	'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' : 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_ITEMS = [
{
	// file to get content for item from; if is set 'content' property doesn't matter
	// only body of HTML document is taken to become scroller item content
	// note: external files require time for loading 
	// it is RECOMMENDED to use content property to speed loading up
	// doesn't work in Opera
	'file': '',
	// string to be displayed as item content, 
	// is RECOMMENDED to be used as an alternative to 'file' property
	'content': '<span class="style2"><br>2011 Rodeo Season Schedule<br>Coming Soon!</span>',
	// pause duration when item top gets top of the scroller box, seconds
	// ignored in on-demand mode while scrolling forward
	'pause_b': 5,
	// pause duration when item top gets top of the scroller box, seconds
	// ignored in on-demand mode while scrolling forward
	'pause_a': 0
},
{
	'file' : '',
	'content' : '<span class="style2"><br><a href="http://www.iprarodeo.com" target="_blank">NARF National All-Region Finals</a><br>Southeastern Livestock Exposition Rodeo<br>Presented by the IPRA<br>March 10-12, 2011<br>Montgomery, Alabama</span>',
	'pause_b' : 5,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<span class="style2"><br><a href="http://www.evenko.ca/en/show/event/professional-bull-riders-4919" target="_blank">Professional Bull Riders</a><br>Presented by the Festival Western St-Tite<br>March 12, 2011<br>Bell Centre, Montreal, Quebec</span>',
	'pause_b' : 5,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<span class="style2"><br><a href="http://www.ohsra.ca" target="_blank">The North East Regional High School Rodeo</a><br>Presented by the Ontario High School Rodeo Association<br>April 1-3, 2011<br>Reach Huron Arena, Clinton, ON</span>',
	'pause_b' : 5,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<span class="style2"><br><a href="http://www.rawhiderodeo.com/contestants_entries.html" target="_parent">IPRA Canadian Finals</a><br>June 11-12, 2011<br>St-Tite, Quebec Canada<br>Entries: May 17th</span>',
	'pause_b' : 5,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<span class="style2"><br><u>Champion Stock Awarded</u><br>#211 Sidewalk Sally<br>Named World Champion Saddle Bronc Horse of the Year in the IPRA!</span>',
	'pause_b' : 5,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<span class="style2"><br><u>Rodeo of the Year</u><br>St-Tite Western Festival<br>Named Outdoor Rodeo of the Year for the 12th Straight Year in the IPRA!</span>',
	'pause_b' : 5,
	'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
];

