function troca_imagem(imagem,enderecoimg,imgoriginal)
{
/*	document.getElementById("imagem_zoom").src = "scripts/timthumb.php?src=/"+imagem.rel+"&w=250&h=190&zc=0"; */

	document.getElementById("imagem_zoom").src = enderecoimg;
	document.getElementById('linkz').href = imgoriginal;
/*	document.getElementById('la').innerHTML = enderecoimg;*/


/*	<? echo $diretoriover.$cod.'_1g.jpg'; ?>&w=<? echo $grande_largura; ?>&h=<? echo $grande_altura; ?>&zc=0" */
}

function atualizaContador(segundos){
	if(segundos>0)
	{
		$("#segundos").html(segundos);
		segundos = segundos-1;
		setTimeout( function()
		{
			atualizaContador(segundos);
		}, 1000);
	}
};

