function stxTogDescr()
{
    $('.toggleDescription').slideToggle();
}

$(document).ready(function() {
	$('.blogCommentMore').hide();
	$('.blogCommentToggle').click(function() {
		stxTogBlogComment($(this).parents('.blogComment'));
	});
	$('.blogCommentElipses').click(function() {
		stxTogBlogComment($(this).parents('.blogComment'));
	});
});

function stxTogBlogComment(comment) {
	comment.find('.blogCommentElipses').toggle();
	comment.find('.blogCommentMore').slideToggle();
}

