$(document).ready(function() {
	$('.showComment').click(
		function(){
			$('#'+$(this).attr('rel')).slideToggle();
	});
	
	$('#category-page .post').toggle(
		function(){
			$($(this).children('h2')).addClass('active');
			$($(this).children('div.entry')).slideDown();
			//alert('test');
	}, function() {
			$($(this).children('h2')).removeClass('active');
			$($(this).children('div.entry')).slideUp();
		});
	
});