$jQuery(document).ready(function() {
  $jQuery(".btn-slide2").click(function() { 
		$jQuery(this).fadeOut("fast"); 
	});
	
	$jQuery(".btn-slide").click(function() {
		//$jQuery("#comments").slideToggle("slow");
		$jQuery("#comments2").slideToggle("slow");
		if ($jQuery("#comments2").length == 0) {
			$jQuery("#comments").slideToggle("slow");
		}
		return false;
	});
	
	$jQuery(".btn-postcomment").click(function() {
		$jQuery("#postcomment").slideToggle("slow"); 
		if($jQuery("#postcomment").length == 0) {
			$jQuery("#postcomments").slideToggle("slow");
		}
		return false;
	});

});

