jQuery(document).ready(function(){
	$(".hotTopicsButton").bind("click",function(){
		$(".hotTopicContent").hide();
		$("#htc" + this.id.substr(3)).show();
	});
});