diff --git a/fullcalendar.module b/fullcalendar.module
index dcdf4bd..a056c84 100644
--- a/fullcalendar.module
+++ b/fullcalendar.module
@@ -195,10 +195,7 @@ function fullcalendar_get_settings($view) {
       'weekMode' => $options['display']['fc_weekmode'],
       'theme' => $options['modules']['fc_theme'],
       'sameWindow' => $options['modules']['fc_window'],
-      'colorbox' => $options['modules']['fc_url_colorbox'],
-      'colorboxClass' => $options['modules']['fc_url_colorbox_class'],
-      'colorboxWidth' => $options['modules']['fc_url_colorbox_width'],
-      'colorboxHeight' => $options['modules']['fc_url_colorbox_height'],
+      'colorbox' => FALSE,
       'left' => $options['header']['fc_left'],
       'center' => $options['header']['fc_center'],
       'right' => $options['header']['fc_right'],
@@ -218,6 +215,13 @@ function fullcalendar_get_settings($view) {
     ),
   );
 
+  if (module_exists('colorbox')) {
+    $settings[$options['dom_id']]['colorbox'] = $options['modules']['fc_url_colorbox'];
+    $settings[$options['dom_id']]['colorboxClass'] = $options['modules']['fc_url_colorbox_class'];
+    $settings[$options['dom_id']]['colorboxWidth'] = $options['modules']['fc_url_colorbox_width'];
+    $settings[$options['dom_id']]['colorboxHeight'] = $options['modules']['fc_url_colorbox_height'];
+  }
+
   if ($options['times']['fc_default_date']) {
     $settings[$options['dom_id']]['year'] = $options['times']['fc_date']['year'];
     $settings[$options['dom_id']]['month'] = $options['times']['fc_date']['month'];
diff --git a/includes/views/fullcalendar.views_default.inc b/includes/views/fullcalendar.views_default.inc
index 997d7e7..dc42762 100644
--- a/includes/views/fullcalendar.views_default.inc
+++ b/includes/views/fullcalendar.views_default.inc
@@ -27,7 +27,17 @@ function fullcalendar_views_default_views() {
   $handler->display->display_options['pager']['type'] = 'none';
   $handler->display->display_options['pager']['options']['offset'] = '0';
   $handler->display->display_options['style_plugin'] = 'fullcalendar';
+  $handler->display->display_options['style_options']['display']['fc_view'] = 'month';
+  $handler->display->display_options['style_options']['display']['fc_firstday'] = '0';
+  $handler->display->display_options['style_options']['display']['fc_weekmode'] = 'fixed';
   $handler->display->display_options['style_options']['modules']['fc_theme'] = 1;
+  $handler->display->display_options['style_options']['modules']['fc_window'] = 0;
+  $handler->display->display_options['style_options']['header']['fc_left'] = 'today prev,next';
+  $handler->display->display_options['style_options']['header']['fc_center'] = 'title';
+  $handler->display->display_options['style_options']['header']['fc_right'] = 'month agendaWeek agendaDay';
+  $handler->display->display_options['style_options']['times']['fc_timeformat'] = 'h:mm{ - h:mm}';
+  $handler->display->display_options['style_options']['times']['fc_clock'] = 0;
+  $handler->display->display_options['style_options']['times']['fc_default_date'] = 0;
   $handler->display->display_options['row_plugin'] = 'fullcalendar_node';
   /* Empty text: FullCalendar: Empty calendar */
   $handler->display->display_options['empty']['area']['id'] = 'area';
diff --git a/includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc b/includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
index 5eb14ea..69e516a 100644
--- a/includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
+++ b/includes/views/plugins/fullcalendar_plugin_style_fullcalendar.inc
@@ -17,13 +17,15 @@ class fullcalendar_plugin_style_fullcalendar extends views_plugin_style {
     $options['modules'] = array(
       'contains' => array(
         'fc_theme' => array('default' => FALSE),
-        'fc_url_colorbox' => array('default' => FALSE),
-        'fc_url_colorbox_class' => array('default' => '#content'),
-        'fc_url_colorbox_width' => array('default' => '80%'),
-        'fc_url_colorbox_height' => array('default' => '80%'),
         'fc_window' => array('default' => FALSE),
       ),
     );
+    if (module_exists('colorbox')) {
+      $options['modules']['contains']['fc_url_colorbox'] = array('default' => FALSE);
+      $options['modules']['contains']['fc_url_colorbox_class'] = array('default' => '#content');
+      $options['modules']['contains']['fc_url_colorbox_width'] = array('default' => '80%');
+      $options['modules']['contains']['fc_url_colorbox_height'] = array('default' => '80%');
+    }
     $options['header'] = array(
       'contains' => array(
         'fc_left' => array('default' => 'today prev,next'),
