<!-- 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.pureairproducts.com/images/main1.jpg'
Img[1] = 'http://www.pureairproducts.com/images/main2.jpg'
Img[2] = 'http://www.pureairproducts.com/images/main3.jpg'
Img[3] = 'http://www.pureairproducts.com/images/main4.jpg'

var links = new Array(); 
links[0] = 'http://www.pureairproducts.com/airpurifiers/'; 
links[1] = 'http://www.pureairproducts.com/nobots/humidifiers/1/atts/0,2491/sort/0/s/2/n/1'; 
links[2] = 'http://www.pureairproducts.com/centralvacuums/'; 
links[3] = 'http://www.pureairproducts.com/airpurifiers-nepa1402.htm'; 

// 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 -->
