<!--
	var adImages = new Array("http://www.bioheatresources.com/images/mf-thumbs/mf3000.png",
							 "http://www.bioheatresources.com/images/idfurnace/PSG-wood-electric-E.P.A.-furnace.png", 
							 "http://www.bioheatresources.com/images/fireplace_inserts/DB-Empress-fpi_003-pellet-insert.png",
							 "http://www.bioheatresources.com/images/boilers/benjamin-wood-boiler.png",
							 "http://www.bioheatresources.com/images/stoves/Cara-with-river-rocks_006-gas-stove.png",
							 "http://www.bioheatresources.com/images/parts/fittings-pipe.png");
	var adURL = new Array("http://www.bioheatresources.com/products/outdoor/index.html", 
						  "http://www.bioheatresources.com/products/indoor/index.html",
						  "http://www.bioheatresources.com/products/fireplaces/index.html",
						  "http://www.bioheatresources.com/products/boilers/index.html",
						  "http://www.bioheatresources.com/products/stoves/index.html",
						  "http://www.bioheatresources.com/parts-and-accessories.html");
					
	var adCaption = new Array("Outdoor Furnaces","Indoor Furnaces", "Fireplaces","Boilers", "Stoves", "Parts &amp; Accessories");
	
	
		
// preload all the images

	var preload = new Array();
		
	for( var i = 0; i < adImages.length; i++ )
	{
	preload[i] = new Image();
	preload[i].src = adImages[i];
	}

	
	thisAd = -1;
	imgCt = adImages.length;
	

	function rotate() {
		if (document.images) {
			if (document.adBanner.complete) {
				thisAd++;
				if (thisAd == imgCt) {
					thisAd = 0;
				}
				document.adBanner.src=adImages[thisAd];
			}
			changeText();
			setTimeout("rotate()", 3 * 1000);
			
		}
	}
	
	function newLocation() {
		document.location.href = adURL[thisAd];
	}
	
	function changeText(){
	document.getElementById('caption').innerHTML = adCaption[thisAd];
	}
	
//-->


	

