          $(document).ready(function(){
                $("#newslink").toggle( function(){
                        $("#newslink").animate({"top": "121px"}, "slow");
                        $("#newses").animate({"height": "290px", "top": "-281px"}, "slow");
                        //$("#newses").animate({"height": "310px"}, "slow");
                        $("#newcontain").animate({"height": "270px", 'top': '-280px'}, "slow");
                }, function(){
                        $("#newslink").animate({"top": "411px"}, 'slow');
                        $("#newses").animate({"height": "0px", "top": "8px"}, 'slow');
                        $("#newcontain").animate({"height": "0px", "top": "0px"}, 'slow');
                });
            });

