diff --git a/on_the_web.install b/on_the_web.install
index b9c2184..08dde47 100755
--- a/on_the_web.install
+++ b/on_the_web.install
@@ -18,4 +18,5 @@ function on_the_web_uninstall() {
   variable_del('on_the_web_feed');
   variable_del('on_the_web_target');
   variable_del('on_the_web_sitename');
+  variable_del('on_the_web_images_path');
 }
diff --git a/on_the_web.module b/on_the_web.module
index 05658f7..cbe4bcb 100755
--- a/on_the_web.module
+++ b/on_the_web.module
@@ -69,6 +69,12 @@ function on_the_web_block_configure($delta = 0) {
       '#default_value' => variable_get('on_the_web_target', TRUE),
       '#description' => t('Unchecking this box his will remove the target="_blank" attribute from these links.'),
     );
+    $form['settings']['images_path'] = array(
+      '#type' => 'textfield',
+      '#title' => t('Images path'),
+      '#description' => t('The path to the images base folder. Leave blank to use the default "<em>@path</em>".', array('@path' => drupal_get_path('module', 'on_the_web') . '/images')),
+      '#default_value' => variable_get('on_the_web_images_path', ''),
+    );
   }
 
   return $form;
@@ -89,6 +95,7 @@ function on_the_web_block_save($delta = 0, $edit = array()) {
     variable_set('on_the_web_size', $edit['size']); 
     variable_set('on_the_web_sitename', $edit['sitename']);
     variable_set('on_the_web_target', $edit['target']);
+    variable_set('on_the_web_images_path', rtrim($edit['images_path'], '/'));
   }
 }
  
@@ -262,8 +269,10 @@ function theme_on_the_web_image($variables) {
   $size = variable_get('on_the_web_size', 'sm'); 
 
   // Assemble necessary variables for building the image.
+  $images_path = variable_get('on_the_web_images_path', '');
+  $images_path = ($images_path != '') ? $images_path : drupal_get_path('module', 'on_the_web') . '/images';
   $variables = array(
-    'path' => drupal_get_path('module', 'on_the_web') . '/images/' . $size . '/' . $service . '.png', 
+    'path' => $images_path . '/' . $size . '/' . $service . '.png', 
     'alt' => $title,
     'title' => $title,
   );
