var imgFull = "divFull";// atribuir o nome da div principal

var box1 = "box34"; //box1 da lista de relacionados
var box2 = "box35"; //box2 da lista de relacionados
var box3 = "box36"; //box3 da lista de relacionados
var box4 = "box37"; //box4 da lista de relacionados

function AparecerDiv(){ // função aparecer  
    document.getElementById(imgFull).style.display = "block"; // usamos o style.display para manupular o css da div e mostrar ela  
}

function OcultarDiv(){  // função ocultar  
    document.getElementById(imgFull).style.display = "none";  // usamos o style.display para manupular o css da div e ocultar ela  
}

function box1(){
	document.getElementById(imgFull).style.backgroundImage = "url(./images/patas.gif)"; // 
}
