// JavaScript Document
var numOfBanners=28;
i = numOfBanners // Number of banners that you have
banner1 = new Image();
banner1.src = "../img/shows/lucyRandomImage/lucysplash1.jpg";
banner2 = new Image();
banner2.src = "../img/shows/lucyRandomImage/lucysplash2.jpg";
banner3 = new Image();
banner3.src = "../img/shows/lucyRandomImage/lucysplash3.jpg";
banner4 = new Image();
banner4.src = "../img/shows/lucyRandomImage/lucysplash4.jpg";
banner5 = new Image();
banner5.src = "../img/shows/lucyRandomImage/lucysplash5.jpg";
banner6 = new Image();
banner6.src = "../img/shows/lucyRandomImage/lucysplash6.jpg";
banner7 = new Image();
banner7.src = "../img/shows/lucyRandomImage/lucysplash7.jpg";
banner8 = new Image();
banner8.src = "../img/shows/lucyRandomImage/lucysplash8.jpg";
banner9 = new Image();
banner9.src = "../img/shows/lucyRandomImage/lucysplash9.jpg";
banner10 = new Image();
banner10.src = "../img/shows/lucyRandomImage/lucysplash10.jpg";
banner11 = new Image();
banner11.src = "../img/shows/lucyRandomImage/lucysplash11.jpg";
banner12 = new Image();
banner12.src = "../img/shows/lucyRandomImage/lucysplash12.jpg";
banner13 = new Image();
banner13.src = "../img/shows/lucyRandomImage/lucysplash13.jpg";
banner14 = new Image();
banner14.src = "../img/shows/lucyRandomImage/lucysplash14.jpg";
banner15 = new Image();
banner15.src = "../img/shows/lucyRandomImage/lucysplash15.jpg";
banner16 = new Image();
banner16.src = "../img/shows/lucyRandomImage/lucysplash16.jpg";
banner17 = new Image();
banner17.src = "../img/shows/lucyRandomImage/lucysplash17.jpg";
banner18 = new Image();
banner18.src = "../img/shows/lucyRandomImage/lucysplash18.jpg";
banner19 = new Image();
banner19.src = "../img/shows/lucyRandomImage/lucysplash19.jpg";
banner20 = new Image();
banner20.src = "../img/shows/lucyRandomImage/lucysplash20.jpg";
banner21 = new Image();
banner21.src = "../img/shows/lucyRandomImage/lucysplash21.jpg";
banner22 = new Image();
banner22.src = "../img/shows/lucyRandomImage/lucysplash22.jpg";
banner23 = new Image();
banner23.src = "../img/shows/lucyRandomImage/lucysplash23.jpg";
banner24 = new Image();
banner24.src = "../img/shows/lucyRandomImage/lucysplash24.jpg";
banner25 = new Image();
banner25.src = "../img/shows/lucyRandomImage/lucysplash25.jpg";
banner26 = new Image();
banner26.src = "../img/shows/lucyRandomImage/lucysplash26.jpg";
banner27 = new Image();
banner27.src = "../img/shows/lucyRandomImage/lucysplash27.jpg";
banner28 = new Image();
banner28.src = "../img/shows/lucyRandomImage/lucysplash28.jpg";
links = new Array
links[1] = "lucy.html"
links[2] = "lucy.html"
links[3] = "lucy.html"
links[4] = "lucy.html"
links[5] = "lucy.html"
links[6] = "lucy.html"
links[7] = "lucy.html"
links[8] = "lucy.html"
links[9] = "lucy.html"
links[10] = "lucy.html"
links[11] = "lucy.html"
links[12] = "lucy.html"
links[13] = "lucy.html"
links[14] = "lucy.html"
links[15] = "lucy.html"
links[16] = "lucy.html"
links[17] = "lucy.html"
links[18] = "lucy.html"
links[19] = "lucy.html"
links[20] = "lucy.html"
links[21] = "lucy.html"
links[22] = "lucy.html"
links[23] = "lucy.html"
links[24] = "lucy.html"
links[25] = "lucy.html"
links[26] = "lucy.html"
links[27] = "lucy.html"
links[28] = "lucy.html"
description = new Array
description[1] = "Welcome to The Fluid Image"
description[2] = "Welcome to The Fluid Image"
description[3] = "Welcome to The Fluid Image"
description[4] = "Welcome to The Fluid Image"
description[5] = "Welcome to The Fluid Image"
description[6] = "Welcome to The Fluid Image"
description[7] = "Welcome to The Fluid Image"
description[8] = "Welcome to The Fluid Image"
description[9] = "Welcome to The Fluid Image"
description[10] = "Welcome to The Fluid Image"
description[11] = "Welcome to The Fluid Image"
description[12] = "Welcome to The Fluid Image"
description[13] = "Welcome to The Fluid Image"
description[14] = "Welcome to The Fluid Image"
description[15] = "Welcome to The Fluid Image"
description[16] = "Welcome to The Fluid Image"
description[17] = "Welcome to The Fluid Image"
description[18] = "Welcome to The Fluid Image"
description[19] = "Welcome to The Fluid Image"
description[21] = "Welcome to The Fluid Image"
description[22] = "Welcome to The Fluid Image"
description[23] = "Welcome to The Fluid Image"
description[24] = "Welcome to The Fluid Image"
description[25] = "Welcome to The Fluid Image"
description[26] = "Welcome to The Fluid Image"
description[27] = "Welcome to The Fluid Image"
description[28] = "Welcome to The Fluid Image"
function randombanner(){
var randomnumber = Math.random();
i = Math.round( (i - 1) * randomnumber) + 1;
document.banner.src = eval("banner" + i + ".src");
}
function startTime(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
closeTime=hours*3600+mins*60+secs;
closeTime+=10;   
Timer();
}
function Timer(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
curTime=hours*3600+mins*60+secs
if (curTime>=closeTime){
if (i < numOfBanners){
i++;
document.banner.src = eval("banner" + i + ".src");
}
else{
i = 1;
document.banner.src = eval("banner" + i + ".src");
}
startTime();
}
else{
window.setTimeout("Timer()",1000)}
}
function clickLink(){
top.location = links[i]
}
function descript(){
window.status = description[i]
}


