diff --git a/sites/all/modules/jquery_update/jquery_update.module b/sites/all/modules/jquery_update/jquery_update.module
index 66a0a33..d325a39 100644
--- a/sites/all/modules/jquery_update/jquery_update.module
+++ b/sites/all/modules/jquery_update/jquery_update.module
@@ -139,14 +139,15 @@ function jquery_update_settings() {
   $form['#submit'][] = 'drupal_clear_js_cache';
   $form['#submit'][] = 'jquery_update_flush_caches';
 
+  $options = array();
+  foreach(jquery_update_files() as $key => $value) {
+    $options[$key] = t(ucfirst($key));
+  }
+  
   $form['jquery_update_compression_type'] = array(
     '#type' => 'radios',
-    '#title' => t('jQuery compression type'),
-    '#options' => array(
-      'pack' => t('Packed'),
-      'min' => t('Minified'),
-      'none' => t('None'),
-    ),
+    '#title' => t('jQuery file'),
+    '#options' => $options,
     '#default_value' => variable_get('jquery_update_compression_type', 'pack'),
     '#description' => t('<cite>From <a href="http://docs.jquery.com/Downloading_jQuery">docs.jquery.com</a>:</cite> <q>The minified version, while having a larger file size than the packed version, is generally the best version to use on production deployments. The packed version requires non-trivial client-side processing time to uncompress the code.</q> "None" is provided for debugging purposes, but generally one of the compression options is recommended.'),
   );
@@ -158,6 +159,26 @@ function jquery_update_settings() {
  * Return the path to the jQuery file.
  */
 function jquery_update_jquery_path() {
-  $jquery_file = array('none' => 'jquery.js', 'pack' => 'jquery.packed.js', 'min' => 'jquery.min.js');
+  $jquery_file = jquery_update_files();
   return JQUERY_UPDATE_REPLACE_PATH . '/' . $jquery_file[variable_get('jquery_update_compression_type', 'pack')];
 }
+
+/**
+ * Return the files included in this module
+ */
+function jquery_update_files() {
+  return  variable_get('jquery_update_files_defaults', _jquery_update_files_defaults());
+}
+
+/**
+ * An interface for adding more files
+ */
+function _jquery_update_files_defaults() {
+  return array('1.2.6' => 'jquery.js', '1.2.6 pack' => 'jquery.packed.js', '1.2.6 min' => 'jquery.min.js');
+}
+
+
+
+
+
+
