// JavaScript Document

function indexFlashLateral(posicao)
{
	flashBanner = document.getElementById("flashLateral").style;
	switch (posicao)
	{
		case 0:
			flashBanner.zIndex = 0;
			//alert(posicao);
		break;
		case 1:
			flashBanner.zIndex = 20000;
			//alert(posicao);
		break;
	}
	//alert(posicao);
}
