function mostrarDiv()
{
    
	fotoW=document.foto.width;
	fotoH=document.foto.height;
	
	document.getElementById("mais").style.top  = ((screen.height-fotoH)/2)+100;
  	document.getElementById("mais").style.left = event.x;
   	document.getElementById("mais").style.visibility='visible';
	
}


function esconderDiv()
{
    
	document.getElementById("mais").style.visibility='hidden';
	
}

function verDestaque(nome1, nome2, nome3, nome4, div1, div2, div3, div4, a1 ,a2 ,a3, a4)
{
    
	
	window.document.getElementById(nome1).className = 'destaque_tab_select';
	window.document.getElementById(nome2).className = 'destaque_tab_no_select';
	window.document.getElementById(nome3).className = 'destaque_tab_no_select';
	window.document.getElementById(nome4).className = 'destaque_tab_no_select';
	
	window.document.getElementById(div1).style.display="block";
	window.document.getElementById(div2).style.display="none";
	window.document.getElementById(div3).style.display="none";
	window.document.getElementById(div4).style.display="none";
	
	window.document.getElementById(a1).className = 'no_select';
	window.document.getElementById(a2).className = 'no_select';
	window.document.getElementById(a3).className = 'no_select';
	window.document.getElementById(a4).className = 'no_select';

}
