window.onload = initGearLinks;

var gearImages = new Array("/images/newDes/serialkritters/albert-the-fish.jpg", "/images/newDes/serialkritters/john-wayne-mousy.jpg", "/images/newDes/serialkritters/kritters-jeffrey-domhare.jpg", "/images/newDes/serialkritters/ted-bunny.jpg", "/images/newDes/serialkritters/david-boar-kowitz.jpg");

var gearUrl = new Array("redbubble.com/products/configure/4300121", "redbubble.com/products/configure/4257133", "redbubble.com/products/configure/4257075", "redbubble.com/products/configure/4256949", "redbubble.com/products/configure/4300176");

var thisPic = 0;

function rotate() {
	thisPic++;
	if (thisPic == gearImages.length) {
	thisPic = 0;
	}
document.getElementById("newDesAni").src = gearImages[thisPic];

setTimeout ("rotate()", 5 * 1000);
}

function newLocation() {
window.open;
document.location.href = "http://www." + gearUrl[thisPic];
document.location.href.target = "_blank";
return false;
}

function initGearLinks() {
	if(document.getElementById("newDesAni").parentNode.tagName == "A") {
		document.getElementById("newDesAni").parentNode.onclick = newLocation;
}
rotate();
}