	var temps = 200;	
	$(document).ready(function() {	
		$("#comments").show();
		$("#comments_hide").click(function(){
			if ($("#comments").is(":hidden")) {
				$("#comments").slideDown(temps);
				$("#comments_hide").removeClass("hide");
				$("#comments_hide").addClass("show");
			} else {
				$("#comments").slideUp(temps);
				$("#comments_hide").removeClass("show");
				$("#comments_hide").addClass("hide");
			}
		return false;
		});
		$(".posts_hide").click(function(){
			if ($(".comments_"+$(this).attr('rel')).is(":hidden")) {
				$(".comments_"+$(this).attr('rel')).slideDown(temps);
				$(this).removeClass("hide");
				$(this).addClass("show");
			} else {
				$(".comments_"+$(this).attr('rel')).slideUp(temps);
				$(this).removeClass("show");
				$(this).addClass("hide");
			}
		return false;
		});
		
	});
