$(document).ready(function(){
	$('.archiveyear > dd').hide();
	$('.archiveyear > dt').click(function (){
		$(this).siblings().toggle('fast');
	});
	
	$('.tipenven').hide();
	$('.tipenventoggle').click(function (){
		$('.tipenven').toggle();
		$('.comment').hide();
	});
	
	$('.comment').hide();
	$('.commenttoggle').click(function (){
		$('.comment').toggle();
		$('.tipenven').hide();
	});	
});