//scroll bar

var Tscr_SCROLL_LOOK = {
	// scroller box size: [width, height]
	'size' : [1000, 20],
	// a length of a gap between two neighboring items, pixels
	'distance' : 100,
	'item_w' : 600,
	// css classes for for item text
	's_i':'marquee_bar_text',
	// css classes for for scroller box
	//'s_b':'marquee_text_bg',
	's_m':'marquee_bar_text',
	// image for 'next item' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'nx' : [580, 35, 30, 30,'menu_files/icons/daisy_anim.gif', 'menu_files/icons/daisy_anim.gif'],

	// image for 'previous item' control (autoscroll mode only)
	// [left, top, width, height, sorce_file, mouseover_sorce_file]
	'pr' : [802, 0, 22, 22,'menu_files/icons/daisy_anim.gif', 'menu_files/icons/daisy_anim.gif']

},

Tscr_SCROLL_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' : 2,
	'interval' : 20,
	'zindex':0,
	// buttons visible on mouse over - true, always visible - false
	'hide_buttons' : true
},

// a data to build scroll window content
Tscr_SCROLL_ITEMS = [
	{
		'file': '',
		'content': 'Inspiring individuals since 1891',
		'pause_b': 2,
		'pause_a': 0
	},
	{
		'file': '',
		'content': 'An independent school for girls aged 3 - 16 and boys aged 3 - 5 years',
		'pause_b': 0,
		'pause_a': 0
	},
	{
		'file': '',
		'content': 'SureStart nursery voucher scheme', 
		'pause_b': 0,
		'pause_a': 0
	},
	{
		'file': '',
		'content': 'Means-tested bursaries available for all ages',
		'pause_b': 0,
		'pause_a': 0
	},
	{
		'file': '',
		'content': 'Founders Week: 8  February -contact school for details',
		'pause_b': 0,
		'pause_a': 0
	},
	{
		'file': '',
		'content': 'Half Term begins 11.30am Friday 12 February',
		'pause_b': 0,
		'pause_a': 0
	},
	{
		'file': '',
		'content': 'School re-opens Monday 22 February',
		'pause_b': 0,
		'pause_a': 0
	},
		{
		'file': '',
		'content': 'Open days: Thurs 4 March & Sat 13 March -contact us for details',
		'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
];
