		
		function show(element){
			document.getElementById('expand1').style.display = 'none';
			document.getElementById('expand2').style.display = 'none';
			document.getElementById('expand3').style.display = 'none';
			document.getElementById('expand4').style.display = 'none';
			document.getElementById('expand5').style.display = 'none';
			document.getElementById('expand6').style.display = 'none';
			document.getElementById('expand8').style.display = 'none';
			element.style.display = 'inline';
		}
		
		function hide(element){
			element.style.display = 'none';	
		}
		
		function switchterug(on, button){
			if(on){
				button.src = 'images/terugover.jpg';
			}else{
				button.src = 'images/terug.jpg';
			}
		}
		
		function switchterugContentPaginas(on, button){
			if(on){
				button.src = '../images/terugover.jpg';
			}else{
				button.src = '../images/terug.jpg';
			}
		}