jQuery(document).ready(function() {
				jQuery("#comments").hide();
                jQuery("#opencomments").click(function(){
                	jQuery("#comments").slideToggle("slow");
                });
            });
