function init(){
   // for(var i=2; i=2; i++){
   document.getElementById('perfil_contenido2').style.display = 'none';
   // }
   document.getElementById('perfil_contenido1').style.display = 'block';
    //document.getElementById('a1').style.color = '#000000';
    //document.getElementById('a1').style.background = '#ffffff';
}

function viewSection(id){
    
        if(id==1){
            document.getElementById('perfil_contenido2').style.display = 'none';
            document.getElementById('perfil_contenido1').style.display = 'block';
            //document.getElementById('a'+i).style.color = '#935b04';
    			//document.getElementById('a'+i).style.background = '#ffffff';
        }else{
            document.getElementById('perfil_contenido1').style.display = 'none';
            document.getElementById('perfil_contenido2').style.display = 'block';
            //document.getElementById('a'+i).style.color = '#ffffff';
    			//document.getElementById('a'+i).style.background = '#debd88';
        }
  
}

