function showSub(which, marke) {
	

	

	if(marke != "") {
		if(document.getElementById('openMarke').value != "") {
			var zuklapp = document.getElementById('openMarke').value;
			$('#' + zuklapp).slideUp('300');	
		}
		document.getElementById('openMarke').value = marke;
	}
	
	if (document.getElementById(which).style.display == "block") {
		$('#' + which).slideUp('300');
	} else {
		$('#' + which).slideDown('300');
	}
}

function showKoll(which) {
	
	var auf = "koll" + which;
	$('#' + auf).slideDown('300');
	document.getElementById("head_" + which).className = 'kollektionen_active';
	var alt = document.getElementById('show_koll').value;
	if (alt == "") {
		alt = "2011";
	}

	if(alt != which) {

		document.getElementById("head_" + alt).className = 'kollektionen';
		$('#koll' + alt).slideUp('300');
		document.getElementById('show_koll').value = which;
	}

}

function showKollOneal(which) {
	
	var auf = "koll" + which;
	$('#' + auf).slideDown('300');
	document.getElementById("head_" + which).className = 'kollektionen_active_oneal';
	var alt = document.getElementById('show_koll').value;
	if (alt == "") {
		alt = "2011";
	}

	if(alt != which) {

		document.getElementById("head_" + alt).className = 'kollektionen_oneal';
		$('#koll' + alt).slideUp('300');
		document.getElementById('show_koll').value = which;
	}

}
