function activate(e) {
	$('#box_left li').each(function() {
		$(this).removeClass('active');
	});
	$('#box_left a').each(function() {
		$(this).removeClass('active');
		$(this).attr('href', 'javascript:;');
	});
	$('#box_left #selection_'+e).addClass('active');
	$('#box_right .in').each(function() {
		if($(this).attr('id') != 'content_id_'+e) {
			$(this).hide();
		} else {
			$('#content_id_'+e).show();
		}
	});
	$('#zitate .in').each(function() {
		if($(this).attr('id') != 'cite_'+e) {
			$(this).hide();
		} else {
			$('#cite_'+e).show();
		}
	});
}
function deactivate(e) {
	//activate(1);
}
$('#box_left a').each(function() {
	$(this).attr('href', 'javascript:;');
});
