<!-- Begin
// Set slideshowSpeed (milliseconds)
var slideshowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 8;
// Specify the image files
var Img = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Img[0] = 'http://www.agecomfort.com/banner_images/banner01.jpg'
Img[1] = 'http://www.agecomfort.com/banner_images/banner02.jpg'
Img[2] = 'http://www.agecomfort.com/banner_images/banner03.jpg'

var links = new Array();
links[0] = 'http://www.agecomfort.com/categories/Boxing-Day-Sale/';
links[1] = 'http://www.agecomfort.com/categories/Comforts/Salt-Crystal-Lamps/';
links[2] = 'http://www.agecomfort.com/pages/Shipping.html'; 

// do not edit anything below this line
var t;
var j = 0;
var p = Img.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Img[i];
}
function runslideshow() {
if (document.all) {
document.images.slideshow.style.filter="blendTrans(duration=2)";
document.images.slideshow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.slideshow.filters.blendTrans.Apply();
}
document.images.slideshow.src = preLoad[j].src;
document.getElementById("changeable").href = links[j];
if (document.all) {
document.images.slideshow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runslideshow()', slideshowSpeed);
}
// End --> 