/* Funcoes usadas para alterar as fotos de conteudos */

function alteraImagem(id){
	var mudaFoto = document.getElementById('mudaFoto'+id);
	
	var imagemAntigaDivObj = document.getElementById('imagemAntiga'+id);
	imagemAntigaDivObj.style.display = 'none';
	
	var uploadImgObj = document.getElementById('uploadImg'+id);
	uploadImgObj.style.display = 'block';
	
	mudaFoto.value = 'S';
	
}

function mantemImagem(id){
	var mudaFoto = document.getElementById('mudaFoto'+id);
	
	var imagemAntigaDivObj = document.getElementById('imagemAntiga'+id);
	imagemAntigaDivObj.style.display = 'block';
	
	var uploadImgObj = document.getElementById('uploadImg'+id);
	uploadImgObj.style.display = 'none';

	mudaFoto.value = 'N';
	
}

function alteraFoto(){
	$('#imagemResumo').toggle();
	$('#alteraImagemResumo').toggle();
	$('#mudaFoto').val('S');	
}

function mantemFoto(){
	$('#imagemResumo').toggle();
	$('#alteraImagemResumo').toggle();
	$('#mudaFoto').val('N');
}

function deletaImagem(id, url){
	
	if (confirm('Tem certeza de que deseja excluir esta imagem?')){
		callAjax('imagemResumo', id, url);
	}
	
}
