if (document.images) {
ads = new Array(5);
ads[0] = "/images/frames/home-frame-5.jpg";
ads[1] = "/images/frames/home-frame-1.jpg";
ads[2] = "/images/frames/home-frame-2.jpg";
ads[3] = "/images/frames/home-frame-3.jpg";
ads[4] = "/images/frames/home-frame-4.jpg";

}

newplace = new Array(5);

newplace[0] = "/products-group-v-saws.asp"
newplace[1] = "/products-detail-hydraulic-tube-benders.asp"
newplace[2] = "/products-group-h-presses.asp"
newplace[3] = "/products-detail.asp?page=POWER%20HAMMER"
newplace[4] = "/products-group-cold-saws.asp"



var timer = null
var	 counter = 0

function banner() {
	    timer=setTimeout("banner()", 10000);
		counter++;
		if (counter >= 5)
		counter = 0;
		document.bannerad.src = ads[counter];
}

function gothere() {
		counter2 = counter;
		window.location.href = newplace[counter2];
}
