
                      var scrollCounter = 0;
                      var scrollText    = "Welcome to Sunshine Electronics, Design & Manufacture all kind of Coaxial Cable, Networking cables, Optical fiber cables"
                      var scrollDelay   = 80;

                      var i = 0;
                      while (i ++ < 140)
                          scrollText = " " + scrollText;

                      function Scroller()
                      {
                          window.status = scrollText.substring(scrollCounter++, 
                                              scrollText.length);
                          if (scrollCounter == scrollText.length)  
                              scrollCounter = 0;
                          setTimeout("Scroller()", scrollDelay);
                      }

                      Scroller();

