diff -urp business/templates/page--front.tpl.php /srv/www/kevin/geology.happymollusk.com/sites/all/themes/business/templates/page--front.tpl.php
--- business/templates/page--front.tpl.php	2012-04-14 15:34:50.000000000 -0500
+++ /srv/www/kevin/geology.happymollusk.com/sites/all/themes/business/templates/page--front.tpl.php	2012-06-16 08:39:57.000000000 -0500
@@ -63,6 +63,8 @@
  * @see template_preprocess_page()
  * @see template_process()
  */
+
+global $theme;
 ?>
 
 <div id="wrap">
@@ -92,24 +94,24 @@
   
   <?php print render($page['header']); ?>
   
-    <?php if (theme_get_setting('slideshow_display','business')): ?>
+    <?php if (theme_get_setting('slideshow_display')): ?>
     <?php 
-    $url1 = theme_get_setting('slide1_url','business');
-    $url2 = theme_get_setting('slide2_url','business');
-    $url3 = theme_get_setting('slide3_url','business');
+    $url1 = theme_get_setting('slide1_url');
+    $url2 = theme_get_setting('slide2_url');
+    $url3 = theme_get_setting('slide3_url');
     ?>
       <div id="slider">
         <div class="main_view">
             <div class="window">
                 <div class="image_reel">
-                    <a href="<?php print url($url1); ?>"><img src="<?php print base_path() . drupal_get_path('theme', 'business') . '/images/slide-image-3.jpg'; ?>"></a>
-                    <a href="<?php print url($url2); ?>"><img src="<?php print base_path() . drupal_get_path('theme', 'business') . '/images/slide-image-2.jpg'; ?>"></a>
-                    <a href="<?php print url($url3); ?>"><img src="<?php print base_path() . drupal_get_path('theme', 'business') . '/images/slide-image-1.jpg'; ?>"></a>
+                    <a href="<?php print url($url1); ?>"><img src="<?php print base_path() . drupal_get_path('theme', $theme) . '/images/slide-image-3.jpg'; ?>"></a>
+                    <a href="<?php print url($url2); ?>"><img src="<?php print base_path() . drupal_get_path('theme', $theme) . '/images/slide-image-2.jpg'; ?>"></a>
+                    <a href="<?php print url($url3); ?>"><img src="<?php print base_path() . drupal_get_path('theme', $theme) . '/images/slide-image-1.jpg'; ?>"></a>
                 </div>
                 <div class="descriptions">
-                    <div class="desc" style="display: none;"><?php print theme_get_setting('slide1_desc','business'); ?></div>
-                    <div class="desc" style="display: none;"><?php print theme_get_setting('slide2_desc','business'); ?></div>
-                    <div class="desc" style="display: none;"><?php print theme_get_setting('slide3_desc','business'); ?></div>
+                    <div class="desc" style="display: none;"><?php print theme_get_setting('slide1_desc'); ?></div>
+                    <div class="desc" style="display: none;"><?php print theme_get_setting('slide2_desc'); ?></div>
+                    <div class="desc" style="display: none;"><?php print theme_get_setting('slide3_desc'); ?></div>
                 </div>
             </div>
         
diff -urp business/theme-settings.php /srv/www/kevin/geology.happymollusk.com/sites/all/themes/business/theme-settings.php
--- business/theme-settings.php	2012-04-14 15:34:50.000000000 -0500
+++ /srv/www/kevin/geology.happymollusk.com/sites/all/themes/business/theme-settings.php	2012-05-28 15:15:14.000000000 -0500
@@ -18,13 +18,13 @@ function business_form_system_theme_sett
   $form['busi_settings']['show_front_content'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show content and sidebar on front page'),
-    '#default_value' => theme_get_setting('show_front_content','business'),
+    '#default_value' => theme_get_setting('show_front_content'),
     '#description' => t('Check this option to show content and sidebar on the front page.'),
   );
   $form['busi_settings']['breadcrumbs'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show breadcrumbs in a page'),
-    '#default_value' => theme_get_setting('breadcrumbs','business'),
+    '#default_value' => theme_get_setting('breadcrumbs'),
     '#description'   => t("Check this option to show breadcrumbs in page. Uncheck to hide."),
   );
   $form['busi_settings']['slideshow'] = array(
@@ -36,7 +36,7 @@ function business_form_system_theme_sett
   $form['busi_settings']['slideshow']['slideshow_display'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show slideshow'),
-    '#default_value' => theme_get_setting('slideshow_display','business'),
+    '#default_value' => theme_get_setting('slideshow_display'),
     '#description'   => t("Check this option to show Slideshow in front page. Uncheck to hide."),
   );
     $form['busi_settings']['slideshow']['slide'] = array(
@@ -51,12 +51,12 @@ function business_form_system_theme_sett
   $form['busi_settings']['slideshow']['slide1']['slide1_desc'] = array(
     '#type' => 'textfield',
     '#title' => t('Slide Description'),
-    '#default_value' => theme_get_setting('slide1_desc','business'),
+    '#default_value' => theme_get_setting('slide1_desc'),
   );
   $form['busi_settings']['slideshow']['slide1']['slide1_url'] = array(
     '#type' => 'textfield',
     '#title' => t('Slide URL'),
-    '#default_value' => theme_get_setting('slide1_url','business'),
+    '#default_value' => theme_get_setting('slide1_url'),
   );
   $form['busi_settings']['slideshow']['slide2'] = array(
     '#type' => 'fieldset',
@@ -67,12 +67,12 @@ function business_form_system_theme_sett
   $form['busi_settings']['slideshow']['slide2']['slide2_desc'] = array(
     '#type' => 'textfield',
     '#title' => t('Slide Description'),
-    '#default_value' => theme_get_setting('slide2_desc','business'),
+    '#default_value' => theme_get_setting('slide2_desc'),
   );
   $form['busi_settings']['slideshow']['slide2']['slide2_url'] = array(
     '#type' => 'textfield',
     '#title' => t('Slide URL'),
-    '#default_value' => theme_get_setting('slide2_url','business'),
+    '#default_value' => theme_get_setting('slide2_url'),
   );
   $form['busi_settings']['slideshow']['slide3'] = array(
     '#type' => 'fieldset',
@@ -83,12 +83,12 @@ function business_form_system_theme_sett
   $form['busi_settings']['slideshow']['slide3']['slide3_desc'] = array(
     '#type' => 'textfield',
     '#title' => t('Slide Description'),
-    '#default_value' => theme_get_setting('slide3_desc','business'),
+    '#default_value' => theme_get_setting('slide3_desc'),
   );
   $form['busi_settings']['slideshow']['slide3']['slide3_url'] = array(
     '#type' => 'textfield',
     '#title' => t('Slide URL'),
-    '#default_value' => theme_get_setting('slide3_url','business'),
+    '#default_value' => theme_get_setting('slide3_url'),
   );
   $form['busi_settings']['slideshow']['slideimage'] = array(
     '#markup' => t('To change the Slide Images, Replace the slide-image-1.jpg, slide-image-2.jpg and slide-image-3.jpg in the images folder of the Business theme folder.'),
@@ -102,13 +102,13 @@ function business_form_system_theme_sett
   $form['busi_settings']['footer']['footer_copyright'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show copyright text in footer'),
-    '#default_value' => theme_get_setting('footer_copyright','business'),
+    '#default_value' => theme_get_setting('footer_copyright'),
     '#description'   => t("Check this option to show copyright text in footer. Uncheck to hide."),
   );
   $form['busi_settings']['footer']['footer_credits'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show theme credits in footer'),
-    '#default_value' => theme_get_setting('footer_credits','business'),
+    '#default_value' => theme_get_setting('footer_credits'),
     '#description'   => t("Check this option to show copyright text in footer. Uncheck to hide."),
   );
 }
