

/*
 * Creativyst(R) Eyelid Scroller:
 *
 *      (C) Copyright 2004 Creativyst, Inc.
 *            ALL RIGHTS RESERVED
 *
 * Use of this software in running applications, with
 * or without modification, is permitted provided
 * that the conditions published at:
 * www.creativyst.com/Prod/18/Scroller/BalScr.htm 
 * are met.
 *
 *    This software may not be redistributed
 *
 *     - This comment may not be removed -
 *
 *
*/


/* Configurations:
 *  elWidth         The width of the scroller
 *  elHeight        The height of the scroller
 *  elMoveIncr      How far to move on each frame closing
 *  elOpenIncr      How far to move on each frame opening
 *  elFrameRate     How often (in miliseconds) to move the frame
 *  elPauseDelay    How long to pause (in milisecs) for each message
 *  elUseBallistics  1 to slow down near end of scoll.
 *
 *  See below for how to add static and/or dynamic content for display
 *
*/
var elWidth=130;
var elHeight=70;
var elMoveIncr=15;
var elOpenIncr = 10;
var elFrameRate = 60;       // was 40
var elPauseDelay = 3000;    // Maximum if elVaryPause
var elPauseMin = 3000;      // If elVaryPause
var elClosePause = 0;       // 0 for no pause
var elVaryPause = 1;        // Vary pause based on msg length
var elMiddle = 0;            // 1 for vertical middle, 0 for top


var elUseBallistics = 1;    // 0 for linear movers (not used)

var elContent=new Array();  // don't change
elContent[0] = "";


/* Static Content:
 *  Fill elements of the elContent[] array with static messages you'd like
 *  to display on the scroller.  You can use the eyelid scroller to
 *  display only these static messages, or you can include a static
 *  message or two to be displayed along with dynamic JSMsg feed data (see below).
 *
 *  Delete or comment out these array lines (but not the above declaration)
 *  if you don't want to display static messages.
 *
*/

