var Tscr_LOOK = {
	// scroller box size: [width, height]
	'size' : [600, 138],
	// a length of a gap between two neighboring items, pixels
	'distance' : 10,
	'item_w' : 146,
	// css classes for for item text
	's_i':'TScrItem',
	// css classes for for scroller box
	's_b':'TScrBody',
	// image for 'pause' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'pa' : [0, 50, 1, 1,,'stackscroller/pixel.gif'],
	// image for 'next item' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'nx' : [280, 120, 20, 20,,'stackscroller/mnxt.gif'],
	// image for 'previous item' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'pr' : [320, 120, 20, 20,,'stackscroller/mprv.gif']
},

Tscr_BEHAVE = {
	// 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':5,
	// 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': '<a href="http://www.hookfarmholidays.com" target="_blank"><img src="grafx/photo2.jpg" border=0 alt="Click for Hook Farm Holidays"></a>',
	// pause duration when item top gets top of the scroller box, seconds
	// ignored in on-demand mode while scrolling forward
	'pause_b': 0,
	// 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' : '<a href="http://www.castlefarmholidays.co.uk" target="_blank"><img src="grafx/photo3.jpg" valign=top border=0 alt="Click for Castle Farm Holidays"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.knockfarm.co.uk" target="_blank"><img src="grafx/photo1.jpg" border=0 alt="Click for Knock Farm B & B"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.garyrobertsimages.com" target="_blank"><img src="grafx/photo7.jpg" border=0 alt="Click for Gary Roberts Images"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.enablement.co.uk" target="_blank"><img src="grafx/photo5.jpg" border=0  alt="Click for Enablement"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.royfolland-funeral-directors.com" target="_blank"><img src="grafx/photo6.jpg" border=0 alt="Click for Roy Folland Funeral Directors"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.littlehiltonfarm.com" target="_blank"><img src="grafx/photo4.jpg" border=0 alt="Click for Little Hilton Farm B & B"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.pdiwales.com" target="_blank"><img src="grafx/photo8.jpg" border=0 alt="Click for Phil Davies Installation"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.garyllewellyn.com" target="_blank"><img src="grafx/photo9.jpg" border=0 alt="Click for Gary Llewellyn Fine Art Photography"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.andersonandassociates.co.uk" target="_blank"><img src="grafx/photo10.jpg" border=0 alt="Click for Anderson Associates"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.richardhellon.com" target="_blank"><img src="grafx/photo11.jpg" border=0 alt="Click for Richard Hellon Photography"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.trailertraining-wales.co.uk" target="_blank"><img src="grafx/photo12.jpg" border=0 alt="Click for Trailer Training Wales"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.aelwyd.com" target="_blank"><img src="grafx/photo13.jpg" border=0 alt="Click for Aelwyd Bed and Breakfast in Solva, Wales"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.amandapainting.co.uk" target="_blank"><img src="grafx/photo15.jpg" border=0 alt="Click for Amanda Painting the Entertainer"></a>',
	'pause_b' : 0,
	'pause_a' : 0
},
{
	'file' : '',
	'content' : '<a href="http://www.hiltongardensandcrafts.co.uk" target="_blank"><img src="grafx/photo14.jpg" border=0 alt="Click for Hilton Court Gardens and Crafts, Pembrokeshire, Wales"></a>',
	'pause_b' : 0,
	'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
];
