function more(obj) {
	var el = document.getElementById(obj);
	
	
	if ( el.className == 'informationen' ) {
	
		el.className = 'informationenshow';
	} else {
		el.className = 'informationen';
	
	}
}
