--- ajax_comments_original.js	2009-03-24 15:50:23.000000000 +0100
+++ ajax_comments.js	2009-03-28 18:12:59.000000000 +0100
@@ -84,7 +84,11 @@ Drupal.behaviors.ajax_comments = functio
     // Attaching event to title link
     $('#comment-form-title:not(.ajax-comments-processed)', context).addClass('ajax-comments-processed').click(reply_click);
     //moving preview in a proper place
-    $('#comment-form-content').parents('.box').before($('#comment-preview'));
+	if ($('#comment-form-content').parents('.box').prev().hasClass('item-list')){
+		$('.item-list').before($('#comment-preview'));
+	} else {
+	    $('#comment-form-content').parents('.box').before($('#comment-preview'));		
+	}
     if (!$('#comment-form-content').attr('cid')) {
       $('#comment-form-content').attr('cid', -1);
     }
