diff --git a/views_accordion/views-accordion.js b/views_accordion/views-accordion.js
--- a/views_accordion/views-accordion.js
+++ b/views_accordion/views-accordion.js
@@ -13,6 +13,7 @@ Drupal.behaviors.views_accordion = function(context) {
       var keeponeopen = this.keeponeopen; // wether or not we'll be allowing the user to close opened items
       var speed = this.speed;  // how fast the sliding will be
       var startopen = this.startopen;  // wether or not an item will start opened
+      var startallopen = this.startallopen; // wether or not to start with all opened
       var cycleOn = this.autocycle; // wether or not we'll be using auto cycling of items
       var cycleSpeed = this.autocyclespeed; // time between each cycle (added to speed below to avoid weird behaviour)
       var togglelinks = this.togglelinks;  // wether or not to show Open All / Close All links
@@ -122,6 +123,11 @@ Drupal.behaviors.views_accordion = function(context) {
         if (startopen) {
           $triggers.filter(':eq('+rowstartopen+')').addClass(activeClass).next().show();
         }
+        
+        if (startallopen) {
+          $content.show();
+          $triggers.addClass(activeClass);
+        }
 
         /*
          * Auto-Cycling through the accordion
diff --git a/views_accordion/views_accordion_style_plugin.inc b/views_accordion/views_accordion_style_plugin.inc
--- a/views_accordion/views_accordion_style_plugin.inc
+++ b/views_accordion/views_accordion_style_plugin.inc
@@ -19,6 +19,7 @@ class views_accordion_style_plugin extends views_plugin_style {
     $options['speed'] = array('default' => 0.5);
     $options['start-open'] = array('default' => 1);
     $options['row-start-open'] = array('default' => 0);
+    $options['start-all-open'] = array('default' => 0);
     $options['toggle-links'] = array('default' => 0);
     $options['include-style'] = array('default' => 1);
     $options['auto-cycle'] = array('default' => 0);
@@ -67,6 +68,12 @@ class views_accordion_style_plugin extends views_plugin_style {
       '#process' => array('views_process_dependency'),
       '#dependency' => array('edit-style-options-start-open' => array(TRUE)),
     );
+    $form['start-all-open'] = array(
+      '#type' => 'checkbox',
+      '#title' => t('Start with all opened.'),
+      '#default_value' => $this->options['start-all-open'],
+      '#description' => t('If you check this on, all the sections will start opened.'),
+    );
     $form['keep-one-open'] = array(
       '#type' => 'checkbox',
       '#title' => t('Allways keep one item opened'),
@@ -145,6 +152,7 @@ class views_accordion_style_plugin extends views_plugin_style {
     $view_settings['keeponeopen'] = $this->options['keep-one-open'];
     $view_settings['startopen'] = $this->options['start-open'];
     $view_settings['rowstartopen'] = $this->options['row-start-open'];
+    $view_settings['startallopen'] = $this->options['start-all-open'];
     $view_settings['speed'] = check_plain($this->options['speed']) * 1000;
     $view_settings['disablecloseothers'] = $this->options['disable-close-others'];
     $view_settings['grouping'] =  $this->options['grouping'] ? 1 : 0;
