// JavaScript Document
<!-- Old Browsers ignore following -- 
pics = 7 // <--------number of random images in the rotation (note: 1 more then its red number below)
now = new Date()
num = (now.getSeconds()% + pics)
url = ""
//----------------------------------------------------------------------------------------------------------------------//   <---Dont go beyond this // with the TEXT variable!
if(num == 0)/* Canoe Sunset */
{
url = "../index.htm"
}
if(num == 1)/* Forest Scene */
{
url = "../index.htm"
}
if(num == 2)/* Sitting by the Lake */
{
url = "../index.htm"
}
if(num == 3)/* Rocky River */
{
url = "../index.htm"
}
if(num == 4)/* Big Yellow Flower */
{
url = "../index.htm"
}
if(num == 5)/* Waterfall Stairs */
{
url = "../index.htm"
}
if(num == 6)/* Autumn Valley */
{
url = "../index.htm"
}
-->