diff --git a/wordpress_import.module b/wordpress_import.module
index 636e57a..061c010 100755
--- a/wordpress_import.module
+++ b/wordpress_import.module
@@ -1181,7 +1181,7 @@ function wordpress_import_process_post(&$wordpress_import, &$context) {
 
   // Node format
   $node['format'] = $wordpress_import->format;
-
+  
   // Node teaser
   if (empty($post['excerpt'])) {
     $node['teaser'] = node_teaser($node['body'], $node['format']);
@@ -1250,7 +1250,14 @@ function wordpress_import_process_post(&$wordpress_import, &$context) {
 
   // Process images for this post
   if ($wordpress_import->options['images']) {
+    
+    // Process images in the $node['body']
     wordpress_import_process_post_images($node['body'], $wordpress_import->options['images_dir'], $context);
+
+    // Process images in the $node['teaser']
+    if (!empty($post['excerpt'])) {
+      wordpress_import_process_post_images($node['teaser'], $wordpress_import->options['images_dir'], $context);
+    }   
   }
 
   // Save the node
