### Eclipse Workspace Patch 1.0
#P d.o-corporateclean
diff --git .buildpath .buildpath
new file mode 100644
index 0000000..8bcb4b5
--- /dev/null
+++ .buildpath
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<buildpath>
+	<buildpathentry kind="src" path=""/>
+	<buildpathentry kind="con" path="org.eclipse.php.core.LANGUAGE"/>
+</buildpath>
diff --git .project .project
new file mode 100644
index 0000000..7f8d8af
--- /dev/null
+++ .project
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+	<name>d.o-corporateclean</name>
+	<comment></comment>
+	<projects>
+	</projects>
+	<buildSpec>
+		<buildCommand>
+			<name>org.eclipse.wst.common.project.facet.core.builder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.wst.jsdt.core.javascriptValidator</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.wst.validation.validationbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+		<buildCommand>
+			<name>org.eclipse.dltk.core.scriptbuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
+	</buildSpec>
+	<natures>
+		<nature>org.eclipse.php.core.PHPNature</nature>
+		<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
+		<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
+	</natures>
+</projectDescription>
diff --git .settings/.jsdtscope .settings/.jsdtscope
new file mode 100644
index 0000000..2f6f983
--- /dev/null
+++ .settings/.jsdtscope
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+	<classpathentry kind="src" path="">
+		<attributes>
+			<attribute name="provider" value="org.eclipse.wst.jsdt.web.core.internal.project.ModuleSourcePathProvider"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
+	<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
+		<attributes>
+			<attribute name="hide" value="true"/>
+		</attributes>
+	</classpathentry>
+	<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
+	<classpathentry kind="output" path=""/>
+</classpath>
diff --git .settings/org.eclipse.php.core.prefs .settings/org.eclipse.php.core.prefs
new file mode 100644
index 0000000..985d9d4
--- /dev/null
+++ .settings/org.eclipse.php.core.prefs
@@ -0,0 +1,2 @@
+eclipse.preferences.version=1
+include_path=0;/d.o-corporateclean
diff --git .settings/org.eclipse.wst.common.project.facet.core.xml .settings/org.eclipse.wst.common.project.facet.core.xml
new file mode 100644
index 0000000..2b76833
--- /dev/null
+++ .settings/org.eclipse.wst.common.project.facet.core.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<faceted-project>
+  <fixed facet="php.component"/>
+  <fixed facet="php.core.component"/>
+  <installed facet="php.core.component" version="1"/>
+  <installed facet="php.component" version="5.3"/>
+</faceted-project>
diff --git .settings/org.eclipse.wst.jsdt.ui.superType.container .settings/org.eclipse.wst.jsdt.ui.superType.container
new file mode 100644
index 0000000..3bd5d0a
--- /dev/null
+++ .settings/org.eclipse.wst.jsdt.ui.superType.container
@@ -0,0 +1 @@
+org.eclipse.wst.jsdt.launching.baseBrowserLibrary
\ No newline at end of file
diff --git .settings/org.eclipse.wst.jsdt.ui.superType.name .settings/org.eclipse.wst.jsdt.ui.superType.name
new file mode 100644
index 0000000..05bd71b
--- /dev/null
+++ .settings/org.eclipse.wst.jsdt.ui.superType.name
@@ -0,0 +1 @@
+Window
\ No newline at end of file
diff --git color/color.inc color/color.inc
index 586b8de..572bbfd 100644
--- color/color.inc
+++ color/color.inc
@@ -1,7 +1,7 @@
 <?php
 
 // Put the logo path into JavaScript for the live preview.
-drupal_add_js(array('color' => array('logo' => theme_get_setting('logo', 'corporateclean'))), 'setting');
+drupal_add_js(array('color' => array('logo' => theme_get_setting('logo'))), 'setting');
 
 $info = array(
   // Available colors and color labels used in theme.
diff --git template.php template.php
index 63e294c..6dc4157 100644
--- template.php
+++ template.php
@@ -9,13 +9,13 @@
  */
 function corporateclean_breadcrumb($variables){
   $breadcrumb = $variables['breadcrumb'];
-  $breadcrumb_separator=theme_get_setting('breadcrumb_separator','corporateclean');
-  
+  $breadcrumb_separator=theme_get_setting('breadcrumb_separator');
+
   $show_breadcrumb_home = theme_get_setting('breadcrumb_home');
   if (!$show_breadcrumb_home) {
   array_shift($breadcrumb);
   }
-  
+
   if (!empty($breadcrumb)) {
     $breadcrumb[] = drupal_get_title();
     return '<div class="breadcrumb">' . implode(' <span class="breadcrumb-separator">' . $breadcrumb_separator . '</span>', $breadcrumb) . '</div>';
@@ -40,14 +40,14 @@
   if (module_exists('color')) {
     _color_page_alter($variables);
   }
- 
+
 }
 
 function corporateclean_form_alter(&$form, &$form_state, $form_id) {
   if ($form_id == 'search_block_form') {
-  
+
     unset($form['search_block_form']['#title']);
-	
+
     $form['search_block_form']['#title_display'] = 'invisible';
 	$form_default = t('Search');
     $form['search_block_form']['#default_value'] = $form_default;
@@ -60,21 +60,21 @@
 /**
  * Add javascript files for jquery slideshow.
  */
-if (theme_get_setting('slideshow_js','corporateclean')):
+if (theme_get_setting('slideshow_js')):
 
 	drupal_add_js(drupal_get_path('theme', 'corporateclean') . '/js/jquery.cycle.all.js');
-	
+
 	//Initialize slideshow using theme settings
-	$effect=theme_get_setting('slideshow_effect','corporateclean');
-	$effect_time=theme_get_setting('slideshow_effect_time','corporateclean')*1000;
-	$slideshow_randomize=theme_get_setting('slideshow_randomize','corporateclean');
-	$slideshow_wrap=theme_get_setting('slideshow_wrap','corporateclean');
-	$slideshow_pause=theme_get_setting('slideshow_pause','corporateclean');
-	
-	drupal_add_js('jQuery(document).ready(function($) { 
+	$effect=theme_get_setting('slideshow_effect');
+	$effect_time=theme_get_setting('slideshow_effect_time')*1000;
+	$slideshow_randomize=theme_get_setting('slideshow_randomize');
+	$slideshow_wrap=theme_get_setting('slideshow_wrap');
+	$slideshow_pause=theme_get_setting('slideshow_pause');
+
+	drupal_add_js('jQuery(document).ready(function($) {
 
 	$(window).load(function() {
-	
+
 		$("#slideshow img").show();
 		$("#slideshow").fadeIn("slow");
 		$("#slider-controls-wrapper").fadeIn("slow");
@@ -93,7 +93,7 @@
 			after: onAfter
 		});
 	});
-	
+
 	function onAfter(curr, next, opts, fwd){
 		var $ht = $(this).height();
 		$(this).parent().animate({height: $ht});
diff --git theme-settings.php theme-settings.php
index acc150d..2e3d3cc 100644
--- theme-settings.php
+++ theme-settings.php
@@ -22,53 +22,53 @@
     '#collapsible' => TRUE,
 	'#collapsed' => FALSE,
   );
-  
+
   $form['mtt_settings']['breadcrumb']['breadcrumb_display'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show breadcrumb'),
   	'#description'   => t('Use the checkbox to enable or disable breadcrumb.'),
-	'#default_value' => theme_get_setting('breadcrumb_display','corporateclean'),
+	'#default_value' => theme_get_setting('breadcrumb_display'),
   );
-  
+
   $form['mtt_settings']['breadcrumb']['breadcrumb_separator'] = array(
     '#type' => 'textfield',
     '#title' => t('Breadcrumb separator'),
-	'#default_value' => theme_get_setting('breadcrumb_separator','corporateclean'),
+	'#default_value' => theme_get_setting('breadcrumb_separator'),
     '#size'          => 5,
     '#maxlength'     => 10,
   );
-  
+
   $form['mtt_settings']['breadcrumb']['breadcrumb_home'] = array(
     '#type'          => 'checkbox',
     '#title'         => t('Show home page link in breadcrumb'),
   	'#description'   => t('Use the checkbox to enable or disable the home page link in breadcrumb.'),
     '#default_value' => theme_get_setting('breadcrumb_home'),
   );
-  
+
   $form['mtt_settings']['slideshow'] = array(
     '#type' => 'fieldset',
     '#title' => t('Front Page Slideshow'),
     '#collapsible' => TRUE,
 	'#collapsed' => FALSE,
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_display'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show slideshow'),
-	'#default_value' => theme_get_setting('slideshow_display','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_display'),
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_js'] = array(
     '#type' => 'checkbox',
     '#title' => t('Include slideshow javascript code'),
-	'#default_value' => theme_get_setting('slideshow_js','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_js'),
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_effect'] = array(
     '#type' => 'select',
     '#title' => t('Effects'),
   	'#description'   => t('From the drop-down menu, select the slideshow effect you prefer.'),
-	'#default_value' => theme_get_setting('slideshow_effect','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_effect'),
     '#options' => array(
 		'blindX' => t('blindX'),
 		'blindY' => t('blindY'),
@@ -99,29 +99,29 @@
 		'zoom' => t('zoom'),
     ),
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_effect_time'] = array(
     '#type' => 'textfield',
     '#title' => t('Effect duration (sec)'),
-	'#default_value' => theme_get_setting('slideshow_effect_time','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_effect_time'),
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_randomize'] = array(
     '#type' => 'checkbox',
     '#title' => t('Randomize slideshow order'),
-	'#default_value' => theme_get_setting('slideshow_randomize','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_randomize'),
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_wrap'] = array(
     '#type' => 'checkbox',
     '#title' => t('Prevent slideshow from wrapping'),
-	'#default_value' => theme_get_setting('slideshow_wrap','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_wrap'),
   );
-  
+
   $form['mtt_settings']['slideshow']['slideshow_pause'] = array(
     '#type' => 'checkbox',
     '#title' => t('Pause slideshow on hover'),
-	'#default_value' => theme_get_setting('slideshow_pause','corporateclean'),
+	'#default_value' => theme_get_setting('slideshow_pause'),
   );
-  
+
 }
\ No newline at end of file
