(function($){ // $ will refer to jQuery within this closure

    $(function(){
        /*
        $('ul.blognav li a').click(function(){
            $(this).parent().toggleClass('current');
            return false;
        });

        $('ul.blognav li ul.blog_subnav a').unbind('click');
        */
       
        $('.comment_guidelines').toggle(function(){
            $('#comment_policy').show();
        },function(){
            $('#comment_policy').hide();
        });

        $('#comment_policy').hide();
    });

})(jQuery); // plugin code ends
