// JavaScript Document
var i = 0;var Speed = 90;TextInput = new Object();TotalTextInput = 0;TextInput[0]= "Firefly Magic Firefly Lights are the most frequently specified artifical 'Fireflies' by Professional Landscape & Lighting Designers for Theme Parks, Zoos, Nature Museums, and major Commercial Display Projects . . .  and now they're available for Your Backyard or Garden.                                Patented computer chip technology makes them Flash, Flicker & Fade just like Mother Nature's real Fireflies and they can be left outdoors in your garden year around.                         Be sure to Buy the Best - Firefly Magic Firefly Lights have a full one year limited warranty!";
var timer; var nspace = 150;var msg = '';function startBanner(i) { clearTimeout(timer); for (i =0 ; i < TotalTextInput+1; i++) { msg = msg + ' ' + TextInput[i]; } for (i=0; i < nspace; i++) { msg=' ' + msg; } scrollMe(); }function scrollMe() { window.status = msg; msg = msg.substring(1, msg.length) +  msg.substring(0,1); timer = setTimeout('scrollMe()',Speed ); }startBanner();
