$(document).ready(function(){
	$("#ctrl").attr("rel",$("#newsBox").height());
	$("#ctrl").toggle(function(){
		$("#newsBox").stop();
		$("#newsBox").animate({ height: "46px" });
	},function(){
		$("#newsBox").stop();
		$("#newsBox").animate({ height: $("#ctrl").attr("rel") + "px" });
	})
});
