window.onload = function() {
	
	
	$(".reply-container").after("<div class='fold_ud'>Vis svar &raquo;</div><div class='fold_ind'>&laquo; Skjul svar</div>");
	$(".depth-2 .fold_ud").hide();
	
	$(".fold_ind").mouseover(function() {
		$(this).css("cursor","pointer");
	});
	
	$(".fold_ud").mouseover(function() {
		$(this).css("cursor","pointer");
	});
	
	$(".fold_ind").hide();
	$(".depth-2").hide();
	
	$(".fold_ud").click(function() {
		
		$(this).parent().parent().parent().parent().find(".depth-2").slideDown();
		$(this).next().show();
		$(this).hide();
	});
	
	$(".fold_ind").click(function() {
		$(this).parent().parent().parent().parent().find(".depth-2").slideUp('slow');
		$(this).prev().show();
		$(this).hide();
	});
	
	
}

