actualValue = 'DE';

function toggleDiv(id) {
	$("div#toggleDiv"+id).slideToggle('normal', function(){
		if($("div#toggleDivLabel"+id).html() == 'anzeigen') {
			$("div#toggleDivLabel"+id).html('ausblenden');
		} else {
			$("div#toggleDivLabel"+id).html('anzeigen');
		}
	});
}

function toggleState(value) {
	if((value == 'DE' && actualValue != 'DE') || (value != 'DE' && actualValue == 'DE')) {
		$("div#toggleState").slideToggle('normal', function(){
			actualValue = value;
		});
	}
	
}