function showAllComments(commentButton, divComment) {
	var comments = document.getElementsByClassName('comments');
	var divComm = $$$(divComment);
	var myButton = $$$(commentButton);
	for(var i=0; i<comments.length;i++) {
		comments[i].style.display = '';
	}
	myButton.innerHTML = '<p> &nbsp;</p>';
	divComm.style.background = 'transparent url(/new-images/comments-bottom-no-button.gif) no-repeat scroll center bottom';
	/*divComm.style.padding = '0 0 11px 0';*/
	document.getElementById('view_comments').style.display = 'none';
}