function animate(index)
{
	var movie = document.getElementById("Gray_Collage_Animation");
	if (movie.object == undefined)
		movie = document.getElementById("eGray_Collage_Animation");
	switch (index)
	{
	case 1:
		movie.GotoFrame(2);
		break;
	case 2:
		movie.GotoFrame(7);
		break;
	case 3:
		movie.GotoFrame(12);
		break;
	case 4:
		movie.GotoFrame(17);
		break;
	case 5:
		movie.GotoFrame(22);
		break;
	case 6:
		movie.GotoFrame(27);
		break;
	case 7:
		movie.GotoFrame(32);
		break;
	}
	movie.Play();
}

function showplain()
{
	var movie = document.getElementById("Gray_Collage_Animation");
	if (movie.object == undefined)
		movie = document.getElementById("eGray_Collage_Animation");
	movie.GotoFrame(0);
	movie.Play();
}
