var i = 1;
banner1 = new Image();
banner1.src = "http://www.cherubijn.nl/images/s_l/pic_001.png";
banner2 = new Image();
banner2.src = "http://www.cherubijn.nl/images/s_l/pic_002.png";
banner3 = new Image();
banner3.src = "http://www.cherubijn.nl/images/s_l/pic_003.png";
banner4 = new Image();
banner4.src = "http://www.cherubijn.nl/images/s_l/pic_004.png";
banner5 = new Image();
banner5.src = "http://www.cherubijn.nl/images/s_l/pic_005.png";
Links = new Array
links[1] = "cart.php?target=product&product_id=16694&category_id=329"
links[2] = "cart.php?target=product&product_id=16678&category_id=304"
links[3] = "cart.php?target=product&product_id=16598&category_id=328"
links[4] = "cart.php?target=product&product_id=16689&category_id=314"
links[5] = "cart.php?target=product&product_id=16689&category_id=314"
description = new Array
description[1] = "The teapottery"
description[2] = "Dubbelwandig glas"
description[3] = "Ribbelbekers"
description[4] = "Tea Infuser"
description[5] = "Franja"

function startTime(){
var time= new Date();
hours= time.getHours();
mins= time.getMinutes();
secs= time.getSeconds();
closeTime=hours*3600+mins*60+secs;
closeTime+=5;	// How many seconds until the next banner rotation
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 < 5){	// The number 4 is the amount of banners that you have above - adjust accordingly
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]
}
