jQuery(document).ready(function(){
	jQuery("#spanCat").click(function(){
		jQuery("#tblTopics").hide();
		jQuery("#spanTopicsSign").html("+");
		jQuery("#tblCategory").show();
		jQuery("#spanCatSign").html("-");
	}).css({"cursor":"pointer"});
	
	jQuery("#spanTopics").click(function(){
		jQuery("#tblCategory").hide();
		jQuery("#spanCatSign").html("+");
		jQuery("#tblTopics").show();
		jQuery("#spanTopicsSign").html("-");
	}).css({"cursor":"pointer"});
});
