$(document).ready(function(){
	
	$("a.show").click(function (){
		$(this).fadeOut("fast");
		$(this).siblings("div.post-body").animate({
		      "height": "toggle", "opacity": "toggle"
		    }, "slow", function(){
			if ($.browser.msie) 
		    	this.style.removeAttribute('filter');
			$(this).parent().children(".hide").fadeIn("fast"	, function(){
					if ($.browser.msie) 
				    	this.style.removeAttribute('filter');
				});
		});
	});

	$("a.hide").click(function (){
		// $(this).parent().children(".hide").hide("fast");
		$(this).siblings(".post-body").animate({
		      "height": "toggle", "opacity": "toggle"
		    }, "slow");
			if ($.browser.msie) 
		    	this.style.removeAttribute('filter');
		$(this).parent().children(".show").fadeIn("fast", function(){
			if ($.browser.msie) 
		    	this.style.removeAttribute('filter');
		});
		$(this).parent().children(".hide").fadeOut("fast");
	});

});
