 function showElement(id)
 {
    document.getElementById(id).style.display= 'inline';
 }

 function hideElement(id)

 {
    document.getElementById(id).style.display= 'none';
 }
 
 function changeElementClass(id, nameOfClass)
 {
    document.getElementById(id).className = nameOfClass;
 }
 
 function show(nr)
 {
    showElement('content'+nr);
    hideElement('more'+nr);
    showElement('less'+nr);
 }
 
 function hide(nr)
 {
    hideElement('content'+nr);
    showElement('more'+nr);
    hideElement('less'+nr);
 }

