<!-- Script Segment
     // This is copyright 1997 Nic Jansma, All Rights Reserved. Modified by Diane Meyer Oct 97
             numlinks = 8 // Set this to the # of links you have

             LinkLocation = new MakeArray(numlinks);

             LinkLocation[1] = "http://ecfans.com/altauel/images/WS-BSI.gif"
             LinkLocation[2] = "http://ecfans.com/altauel/images/CP-CI.gif"
             LinkLocation[3] = "http://ecfans.com/altauel/images/DG-O.gif"
             LinkLocation[4] = "http://ecfans.com/altauel/images/EMT-RM.gif"
             LinkLocation[5] = "http://ecfans.com/altauel/images/LLS-SWR.gif"
             LinkLocation[6] = "http://ecfans.com/altauel/images/MC-EFS.gif"
             LinkLocation[7] = "http://ecfans.com/altauel/images/SH-MEFS.gif"
             LinkLocation[8] = "http://ecfans.com/altauel/images/VM-MS.gif"

             var now = new Date()
             var sec = now.getSeconds()

             linknum = (sec % numlinks+1)

             document.write ("<img height='80' alt=\"What are YOUR favorite books?\" src=\"" + LinkLocation[linknum] + "\">")

     function MakeArray(n) { 
             this.length = n; 
             for (var i = 1; i <= n; i++) { 
                     this[i] = 0 }
                 return this 
              

     }
     // End Script -->
