// please keep these lines on when you copy the source // made by: Nicolas - http://www.javascript-page.com var currentdate = 0 var core = 0 function StringArray (n) { this.length = n; for (var i =1; i <= n; i++) { this[i] = ' ' } } // if you want to update the images (e.g. add some), then // update the number of items in the StringArray as well // image = new StringArray(2) image[0] = 'img/ReveraIT_red.jpg' image[1] = 'img/ReveraIT_blue.jpg' var ran = 60/image.length function ranimage() { currentdate = new Date() core = currentdate.getSeconds() core = Math.floor(core/ran) return(image[core]) } // write the image to the document // document.write("Revera IT Logo")