function slideToggle(id)
{
	$("#"+id).slideToggle(1000);
}

function efeitoImagem(id,id_alvo,imagem)
{
	$("#"+id).hide(0000).fadeIn(1000);
	window.document.getElementById(id_alvo).src = imagem;
    window.scroll(0, 340);
}

function exibir(id)
{
	$("#"+id).show();
}

function esconder(id)
{
	$("#"+id).slideToggle(1000);
}

function definirImagem(imagem)
{
	window.document.form_cadastrar.imagem.value = imagem;
	//document.getElementById(id).value = imagem;
	//alert(imagem);
}


