$(document).ready(function() {
	$('.blog').find('div').hide().end();
	$('a.comment').append(' &#187;').click(function() {
		var id = '#c' + this.title;
         var answer = $(id);
         if (answer.is(':visible')) {
             answer.slideUp({
			height: 'hide',
			opacity: 'hide'
		}, 'fast')} else {
             answer.slideDown({
			height: 'show',
			opacity: 'show'
		});
         }
		 return false;
     });
     
});