var rotationAR = new Array('../images/rotation/Char_Broiler_Radiant.jpg','../images/rotation/10bRange.jpg','../images/rotation/cooler.gif','../images/rotation/dishwasher.gif','../images/rotation/Fryer-45.jpg','../images/rotation/hotplate.jpg','../images/rotation/mixer.gif','../images/rotation/raisedGriddle.jpg','../images/rotation/range.gif','../images/rotation/salamander.jpg','../images/rotation/Sp48.jpg');

var current = 0;

function rotateImage() {

	if (!document.images) return;

	if (current == rotationAR.length) { current = 0; }

	//alert('photos/' + rotationAR[current]);

	document.images['rotationImg'].src = 'rotation/' + rotationAR[current++];

	setTimeout('rotateImage()',3000);

}

rotateImage();