function showComments(ele){
	//get ele
	var ele = jQuery(ele);
	
	//get comments display
	var comments = jQuery(ele).parents('.share-bar').find('.comments_display');
	
	//if its animate return
	if(comments.is(":animated")) return;
	
	//show or hide
	if(comments.is(":visible")){
		comments.slideUp();
	} else {
		comments.slideDown();
	}
}
