    $(function() {
        $(".article").corner("3px");
        $("div#navigation a").corner()
        $("div.comment").corner()
        $("div.dynamic_comment_section").hide();
		 $("a.show_hide_comments").toggle(
            function() {
                $(this).next("div.dynamic_comment_section").show("slow");
            },

            function() {
                $(this).next("div.dynamic_comment_section").hide("slow");
            }
        );
        $("div#nav480 a").corner("5px");
		SyntaxHighlighter.all()
});



