function moretext(id) {
	obj = document.getElementsByTagName("div");
	obj2 = document.getElementsByTagName("ul");
    if (obj['inside'].style.display == 'block'){
    obj['inside'].style.display = 'none';
    obj['oeffnen'].style.display = 'block';
    obj['content-start'].style.backgroundImage = 'url(fileadmin/templates/bilder/buch_zugeklappt_de.png)';
	obj['content-start'].style.width = '470px';
	obj['navi'].style.width = '600px';
	obj2['naviul'].style.width = '489px';
	obj['left'].style.width = '740px';
    }
    else {
    obj['inside'].style.display = 'block';
    obj['oeffnen'].style.display = 'none';
    obj['content-start'].style.backgroundImage = 'url(fileadmin/templates/bilder/buch_aufgeklappt_2-seiten.png)';
	obj['content-start'].style.width = '868px';
	obj['navi'].style.width = '950px';
	obj2['naviul'].style.width = '950px';
	obj['left'].style.width = '1143px';
    }
}
