$(document).ready(function(){

	$(".slow").click(function(event){
	   $(this).hide("slow");
	 });




	$(".btn-slide").click(function(){
		$("#panel").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

	$(".btn-slide_comments").click(function(){
		$("#panel_comments").slideToggle("slow");
		$(this).toggleClass("active"); return false;
	});

	 
});
