diff -urp ./imceimage.js ./imceimage.js
--- ./imceimage.js	2008-04-09 11:59:57.000000000 -0700
+++ ./imceimage.js	2010-02-25 23:53:59.000000000 -0800
@@ -21,7 +21,7 @@ imceImage.insert = function (file, win) 
 	win.close();
 	
 	fld = imceImage.target;
-	var img = '#imceimagearea-' + fld;
+	var img = '.imceimagearea-' + fld;
 	$(img).attr('src', file.url);
 	$(img).attr('width', file.width);
 	$(img).attr('height', file.height);
diff -urp ./imceimage.module ./imceimage.module
--- ./imceimage.module	2009-03-27 10:30:14.000000000 -0700
+++ ./imceimage.module	2010-02-25 23:53:27.000000000 -0800
@@ -250,7 +250,7 @@ function imceimage_views_api() {
 function theme_imceimage_image($s, $w='', $h='', $a='', $id='') {
     $s = 'src="'. $s .'" ';
     $a = 'alt="'. $a .'" ';
-    $id = !empty($id)? 'id="'. $id .'" ':'';
+    $id = !empty($id)? 'class="'. $id .'" ':'';
     $w = !empty($w)? 'width="'. $w .'" ':'';
     $h = !empty($h)? 'height="'. $h .'" ':'';
     return '<img '. $s . $a . $w . $h . $id .'/>';
Only in .: imceimage_id_to_class_fix_20100225a.patch
