
var Comment = {
	
	/*
	 * Will only change the class of the div containing the comments and commentform.
	 * the class hide is "display: none"
	 * the class show is "display: block"
	 */
	
	show: function(id){
		document.getElementById(id).className = "show";
	},
	
	hide: function(id){
		document.getElementById(id).className = "hide";
	}
	
}
