
$(function(){
	
	$("a.topic").click(function(){
		$(".ie #topic").css("display","block");
		$(".all #topic").append('<div id="topic" style="display:block;"></div>');
		$(".all #topic").fadeIn(800);
	});

	$(function(){
		$("#topic").click(function(){
		$(".ie #topic").css("display","none");
		$(".all #topic").append('<div id="topic" style="display:none;"></div>');
		$(".all #topic").fadeOut(800);
		});
	});

})(jQuery);



