<!-- Start of JavaScript code --------
//
// Description: Randomly change background color every 5 seconds
//
// NewcWare 1997
// Author: Scott Newcomer 3/1997
// Email: nuke@bright.net
//
function setbackground()
{
window.setTimeout( "setbackground()", 8000); // 8000 milliseconds delay

var index = Math.round(Math.random() * 9);

var ColorValue = "#FFFFFF"; // default color - white (index = 0)

if(index == 1)
ColorValue = "#503360"; //purple
if(index == 2)
ColorValue = "#336049"; //green
if(index == 3)
ColorValue = "#812727"; //sienna
if(index == 4)
ColorValue = "#663c33"; //brown
if(index == 5)
ColorValue = "#0d8982"; //teal
if(index == 6)
ColorValue = "#234f65"; //dark blue
if(index == 7)
ColorValue = "#70521d"; //brown 2
if(index == 8)
ColorValue = "#4d6b48"; //hunter green
if(index == 9)
ColorValue = "#7c7c7c"; //grey

document.all.slideshowCell.style.backgroundColor=ColorValue;

}