function ArchiveCycle(CBefore) {
	setTimeout("ArchiveCycle1('" + CBefore + "')",7000,"JavaScript");
}
function ArchiveCycle1(CBefore) {
	var CBefore,Id0,Id1,Id2;
	Id0 = CBefore + "_arc0";
	Id1 = CBefore + "_arc1";
	Id2 = CBefore + "_arc2";
	$(Id0).style.display = "block";
	$(Id1).style.display = "none";
	$(Id2).style.display = "block";
	new Effect.BlindUp(Id0);
	// $(Id0).visualEffect("BlindUp");
	setTimeout("ArchiveCycle2('" + CBefore + "')",7000,"JavaScript");
}
function ArchiveCycle2(CBefore) {
	var CBefore,Id0,Id1,Id2;
	Id0 = CBefore + "_arc0";
	Id1 = CBefore + "_arc1";
	Id2 = CBefore + "_arc2";
	$(Id0).style.display = "block";
	$(Id2).style.display = "none";
	$(Id1).style.display = "block";
	new Effect.BlindUp(Id0);
	// $(Id0).visualEffect("BlindUp");
	setTimeout("ArchiveCycle1('" + CBefore + "')",7000,"JavaScript");
}
