--- switchtheme.module.orig	2007-08-31 10:57:42.000000000 -0400
+++ switchtheme.module	2008-04-20 14:59:38.000000000 -0400
@@ -65,7 +65,7 @@ function switchtheme_admin_settings() {
     $form['switchtheme']['switchtheme_'. $option] = array(
       '#type' => 'textfield',
       '#title' => $option,
-      '#default_value' => variable_get('switchtheme_'. $option, $option),
+      '#default_value' => variable_get('switchtheme_'. $option, drupal_ucfirst($option)),
       );
   }
 
@@ -176,7 +176,7 @@ function switchtheme_select() {
   $options = switchtheme_options();
 
   foreach ($options as $option) {
-    $select[$option] = variable_get('switchtheme_'. $option, $option);
+    $select[$option] = variable_get('switchtheme_'. $option, drupal_ucfirst($option));
   }
   asort($select);
   return $select;
