function persone() {
    
    $('descpersone').setStyle('height', '277px');
    var divpersone = $$('#testopersona > div');
    divpersone.each(function(div) { div.setStyle('display', 'none'); });

    $$('#listapersone a').each(function(linkpersona) {
        linkpersona.addEvent("click", function(event) {
            
            // remove currentid 
            if ($('currentperson')) $('currentperson').removeAttribute('id');
                
            // hide all person
            divpersone.each(function(div) { div.setStyle('display', 'none'); });
                
            // show person
            divId = this.get('rel');
            
            if ($(divId)) {
                $(divId).setStyle('display', 'block');
                this.parentNode.id = 'currentperson';
            }
            
            return false;
        });
    });


}

    
window.addEvent('domready', persone);
