// JavaScript Document

$(function(){
	$("div.news_topics").click(function(){
		var index = $("div.news_topics").index(this);
		$("div.news_topics_more").eq(index).slideToggle({speed: 800, easing: "easeout"});
	}).css("cursor","pointer");
});
