--- ../litejazz/settings.php	2007-08-24 00:55:46.000000000 +0200
+++ ../litejazz6/theme-settings.php	2008-08-30 15:45:03.000000000 +0200
@@ -1,63 +1,56 @@
 <?php
+// $Id: template.php,v 1.2 2007/08/23 22:55:46 roopletheme Exp $
 
-function phptemplate_settings($saved_settings) {
+function litejazz_settings($saved_settings) {
 
-  $settings = theme_get_settings('litejazz');
-
-  $defaults = array(
-    'litejazz_style' => 0,
+$defaults = array(
+	'litejazz_style' => 0,
     'litejazz_width' => 0,
 	'litejazz_fixedwidth' => '850',
     'litejazz_breadcrumb' => 0,
 	'litejazz_iepngfix' => 0,
-    'litejazz_themelogo' => 0,
-  );
+    'litejazz_style' => 'blue',
+);
 
-  $settings = array_merge($defaults, $settings);
+$settings = array_merge($defaults, $saved_settings);
+$form = array();
 
-  $form['litejazz_style'] = array(
-    '#type' => 'select',
+$form['litejazz_style'] = array(
+	'#type' => 'select',
     '#title' => t('Style'),
     '#default_value' => $settings['litejazz_style'],
     '#options' => array(
       'blue' => t('Blue'),
       'red' => t('Red'),
     ),
-  );
-
-  $form['litejazz_themelogo'] = array(
-    '#type' => 'checkbox',
-    '#title' => t('Use Themed Logo'),
-    '#default_value' => $settings['litejazz_themelogo'],
-  );
+);
 
-  $form['litejazz_width'] = array(
+$form['litejazz_width'] = array(
     '#type' => 'checkbox',
     '#title' => t('Use Fixed Width'),
     '#default_value' => $settings['litejazz_width'],
-  );
+);
 
-  $form['litejazz_fixedwidth'] = array(
+$form['litejazz_fixedwidth'] = array(
     '#type' => 'textfield',
     '#title' => t('Fixed Width Size'),
     '#default_value' => $settings['litejazz_fixedwidth'],
     '#size' => 5,
     '#maxlength' => 5,
-  );
+);
 
-  $form['litejazz_breadcrumb'] = array(
+$form['litejazz_breadcrumb'] = array(
     '#type' => 'checkbox',
     '#title' => t('Show Breadcrumbs'),
     '#default_value' => $settings['litejazz_breadcrumb'],
-  );
+);
 
-  $form['litejazz_iepngfix'] = array(
+$form['litejazz_iepngfix'] = array(
     '#type' => 'checkbox',
     '#title' => t('Use IE PNG Fix'),
     '#default_value' => $settings['litejazz_iepngfix'],
-  );
-
-  return $form;
-}
+);
 
+return $form;
 
+}
