<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 6000;
// Specify the image files
var Pic = new Array();
var Location = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/switch_1.jpg';
Pic[1] = 'images/switch_2.jpg';
Pic[2] = 'images/switch_4.jpg';
Pic[3] = 'images/switch_5.jpg';

Location[0] = 'http://www.residential.carrier.com/systems/infinity.shtml';
Location[1] = 'http://www.residential.carrier.com/products/airquality/aircleaners/index.shtml';
Location[2] = 'http://www.midamericanenergy.com/html/service14.asp';
Location[3] = 'http://www.bellbrothers.com';

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
	preLoad[i] = new Image();
	preLoad[i].src = Pic[i];
}
function runSlideShow() {
	if (document.all) {
		var bbimg = document.all['SlideShow'];
		var bblink = document.all['SlideLink'];
	} else {
		var bbimg = document.getElementById('SlideShow');
		var bblink = document.getElementById('SlideLink');
	}
		bbimg.src = Pic[j];
		bblink.href = Location[j];
	j++;
	if (j > (p - 1)) j = 0;
	t = setTimeout('runSlideShow()', slideShowSpeed);
}