var Content = new function() {

	this.categ = function(id) {
		document.location.href="index.php?mod=content&id=helpdesk&cat="+id;
	};
	
	this.show = function(id) {
		var obj=$("answer"+id);
		if (obj.style.display == "") $("answer"+id).style.display="none";
		else $("answer"+id).style.display="";
	};
	
}

