function commentDisplayToggle(){
	var vector = $("#comment-vector").html();
	if(vector == '+'){
		$("#comment-display").slideDown("slow",function(){
			$("#comment-vector").html('-');
		});
	}else{
		$("#comment-display").slideUp("normal",function(){
			$("#comment-vector").html('+');
		});
	}
}

