// JavaScript Document

function Hide()
{
	var cadastro = document.getElementById("cadastro");
	cadastro.style.display = "none";
	document.getElementById("formulario").style.display = "block";
	document.getElementById("msg").style.display = "none";
}

function MostraCadastro(o)
{
	var cadastro = document.getElementById("cadastro");
	
	if(o)
	{
		$(document).ready
		(
			function()
			{
				cadastro.style.display = "block";
				
				init_dw_Scroll();
				
				$("#cadastro").animate({opacity: 1}, 700);
			}
		);
	}
	else
	{
		$(document).ready
		(
			function()
			{
				$("#cadastro").animate({opacity: 0}, 700, Hide);
			}
		);
	}
}
