$(function(){
	$("div.pannel div.topicList:not("+$("#news .title a.selected").attr("href")+")").hide()
	$("#news .title a.nopscr").click(function(){
		$("#news .title a.nopscr").removeClass("selected")
		$(this).addClass("selected")
		$("div.pannel div.topicList").hide()
		$($(this).attr("href")).show()
		return false
	})
})

