  $(document).ready(function(){
		$("p.identity-comments-expandable").click(function () {
			if (this.style.overflow == 'hidden') {
				$('#' +this.id).css({
					'overflow'	:	'visible',
					'height'	:	'auto',
					'min-height'	:	'3em'
				});
				var newtext = document.getElementById(this.id+'98').innerHTML;
				$('#'+this.id).html(newtext);
			} else {
				$('#' +this.id).css({
					'overflow'	:	'hidden',
					'height'	:	'auto',
					'min-height':	'3em'
				});
				var newtext = document.getElementById(this.id+'99').innerHTML;
				$('#'+this.id).html(newtext);
			}
			rePositionShadows();
		});
  });