/*
	*	File:		scroll_config.js
	*	Name:		Scroller configuration
	*	Date:		17 October 2003
*/


/*
	CSS display configuration classes (class names can be customised):
	examples:
		.scrollerplay { background-color: #CCCCCC; layer-background-color: #CCCCCC; color: #000000; }
		.scrollerstop { background-color: #BCBCBC; layer-background-color: #BCBCBC; color: #ECECEC; }
		.scrollitemplay { }
		.scrollitemstop { background-color: #ECECEC; }
		.scrollitemtitle { font-size: 90%; font-weight: bold; }
		.scrollitemdescription { font-size: 80%; }
		a.scrollitemlink:link, a.item:visited { text-decoration: none; }
		a.scrollitemlink:active, a.scrollitemlink:hover { text-decoration: underline; }
*/
//	scroller box, during playback
scroll_css_control_play = 'scrollerplay';
//	scroller box, when stopped
scroll_css_control_stop = 'scrollerstop';
// a scrolling item, during normal playback
scroll_css_item_play = 'scrollitemplay';
// a scrolling item, when paused at the top
scroll_css_item_stop = 'scrollitemstop';
// titles in scrolling items <STRONG>
scroll_css_item_title = 'scrollitemtitle';
// descriptions in scrolling items <SMALL>
scroll_css_item_description = 'scrollitemdescription';
// links in scrolling items <A HREF="..>
scroll_css_item_links = 'scrollitemlink';

/*
	what parts of each item should be linked?
	- title			(by default this is linked)
	- description	(by default, descriptions are NOT linked)
*/
//scroll_link_title = false;
//scroll_link_description = true;


/*
	width and height of scroller box (default is 100px x 100px)
*/
scroll_width = 190;
scroll_height = 90;


/*
	scrolling speed configuration
	- scroll_fps:		framerate (frames per second) of the animation
						* higher numbers are smoother, 12 fps is adequate for most motion
						* as a guide..
							* film (cinema) runs at 24fps
							* tv/video runs at 25 fps (PAL) or 30 fps (NTSC)
	- scroll_pixels:	number of pixels the scroller moves by each frame
						* larger amounts make for jerkier motion
						* the scroller adjusts as necessary to ensure items pause at the top
	- scroll_pause:		delay (in seconds) each item waits when it reaches the top
*/
//scroll_fps = 12; // frames per second
//scroll_pixels = 2; // pixels
//scroll_pause = 2; // seconds


/* 
	pause onMouseOver - if you want the scroller to freeze when the mouse is over, turn on.
*/
onMouseOver_pause = true;


/*
	create a scroller!
	* scroll_create(id)
		- create the scroller control and give it an ID
		- id must conform to CSS ID requirements: eg. scroller1
	* scroll_add(title, description, url, target)
		- add all the scrolling items
			- title [optional] of item, treat as html, escape < &lt; and > &gt;
			- description [optional] (as above)
			- URL [optional] address of webpage to link to
			- target [optional] target frame for URL link
	* scroll_done()
		- generates html code for the scroller

	if you want it to start scrolling automatically, add this to your HTML page:
	<BODY ... onLoad="scroll_play('scroller-id');">
	(replace scroller-id with the ID you use below)

*/


