<!-- // custom for mto
OnLoad += "rotateMTO();";

function rotateMTO() {
	if ($('MTOBoxes')) {
		var x = randomNumber(boxImgs);
		var aNode = $('MTOBoxes').getElementsByTagName('A');
		var iNode = $('MTOBoxes').getElementsByTagName('IMG');
		aNode[0].href = "/product/" + eval("imgid" + x) + "/";
		iNode[0].src = eval("img" + x + ".src"); 
		iNode[0].width = eval("img" + x + ".width"); 
		iNode[0].height = eval("img" + x + ".height"); 
	}
	setTimeout("rotateMTO()", 2000);
	return true;
}
//-->