// JavaScript Document
window.onload = rotateSet;

var productImages = new Array("images/primal-mass-transit-jersey.jpg", "images/primal-pink-floyd-jersey.jpg", "images/primal-skull-socks.jpg", "images/cannondale-baggy-shorts.jpg");

var productNum = 0;

function rotateSet() {
	rotateProduct();
	setTimeout("rotateSet()", 6*1000);
}

function rotateProduct() {
	productNum ++;
	if (productNum == productImages.length) {
		productNum = 0;
	}
	document.getElementById("productPic").src = productImages[productNum];
}
