
function rotate(){
	rotator.push(current);
	fade(current);
	current = rotator.shift();
	appear(current);
	callLater(4, rotate);
}

addLoadEvent(function(){
	rotator = $$('div#slideshow a');
	current = rotator.shift();
	appear(current);
	callLater(4, rotate);
});
