/*******************************************************************************/
/* Copyright ©2007, Dennis Teunissen - Filmhuis Hoorn: www.filmhuishoorn.nl    */
/* JAVASRIPTFILE FOR THE WEBSITE OF FILMHUIS HOORN                             */
/* SCRIPT: TICKERTEMPLATE													   */
/*******************************************************************************/

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

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': 5
},

// 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' : '<a href=\'history.php\' target=\'content\'><b>Filmhuis Hoorn</b><br>Elk jaar meer dan 500 voorstellingen dankzij meer dan 50 vrijwilligers! Zowel van recente films als van klassiekers!</a>',
		'pause_b': 7,
		'pause_a': 0
	},
	{
		'file': '',
		'content': '<a href=\'agenda.php\' target=\'content\'><b>Filmpje pakken?</b><br>Reserveer dan vandaag nog voor de voorstelling van uw keuze via ons online reserveersysteem!</a>',
		'pause_b': 7,
		'pause_a': 0		
	},
	{
		'file': '',
		'content' : '<a href=\'location.php\' target=\'content\'><b>Locatie</b><br>Filmhuis Hoorn<br>Korte Achterstraat 2a<br>(achter de HEMA)<br>1621 GA Hoorn</a>',
		'pause_b': 7,
		'pause_a': 0
	},
	{
		'file': '',
		'content' : '<a href=\'contact.php\' target=\'content\'><b>Meer weten?</b><br>Voor meer informatie over Filmhuis Hoorn kunt u bellen naar 0229 232296. Mailen kan ook: info@filmhuishoorn.nl</a>',
		'pause_b': 7,
		'pause_a': 0
	},			
	{
		'file': '',
		'content' : '<a href=\'members.php\' target=\'content\'><b>Filmfan?</b><br>Steun Filmhuis Hoorn. Word ook vriend en ontvang korting aan de kassa!</a>',
		'pause_b': 7,
		'pause_a': 0
	}
]
