var LOOK = {
	// scroller box size: [width, height]
	'size': [165, 270]
},

BEHAVE = {
	// autoscroll - true, on-demand - false
	'auto': true,
	// vertical - true, horizontal - false
	'vertical': true,
	// scrolling speed, pixels per 40 milliseconds;
	// for auto mode use negative value to reverse scrolling direction
	'speed': 3
},

// a data to build scroll window content
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
		// please, DON'T forget to set ALL IMAGE SIZES 
		// in either external file or in 'content' string for scroller script 
		// to be able to estimate item sizes
		'file': '',
		'content': '<img src="../images/sanke.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
                
	},
	{
		'file': '',
		'content' : '<img src="../images/showa.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/kohaku1.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/ochib.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/kimatsuba.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/asagi.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/ginmatsuba.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/midorigoi.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/akamatsuba.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		'content' : '<img src="../images/kiko.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 1
	},
	{
		'file': '',
		// note: image path is relative to the ts_files directory
		'content' : '<img src="../images/kumonryu.jpg" height="210" width="157">',
		'pause_b': 2,
		'pause_a': 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
]
