diff --git a/cod_base/cod_base.features.user_permission.inc b/cod_base/cod_base.features.user_permission.inc
index fc24a11..79ea3ac 100644
--- a/cod_base/cod_base.features.user_permission.inc
+++ b/cod_base/cod_base.features.user_permission.inc
@@ -71,5 +71,13 @@ function cod_base_user_default_permissions() {
     ),
   );
 
+  // Exported permission: view own orders
+  $permissions['view own orders'] = array(
+    'name' => 'view own orders',
+    'roles' => array(
+      '0' => 'authenticated user',
+    ),
+  );
+
   return $permissions;
 }
diff --git a/cod_base/cod_base.info b/cod_base/cod_base.info
index a47ad13..ca4aa07 100644
--- a/cod_base/cod_base.info
+++ b/cod_base/cod_base.info
@@ -4,6 +4,7 @@ dependencies[] = "features"
 dependencies[] = "menu"
 dependencies[] = "profile"
 dependencies[] = "strongarm"
+dependencies[] = "uc_order"
 dependencies[] = "uuid_features"
 dependencies[] = "views"
 description = "Contains dependencies shared by other COD feature modules."
@@ -20,6 +21,7 @@ features[user_permission][] = "administer site configuration"
 features[user_permission][] = "administer users"
 features[user_permission][] = "administer views"
 features[user_permission][] = "use admin toolbar"
+features[user_permission][] = "view own orders"
 features[user_profile_field][] = "profile_first"
 features[user_profile_field][] = "profile_interests"
 features[user_profile_field][] = "profile_job_title"
diff --git a/cod_sponsor_sales/cod_sponsor_sales.features.content.inc b/cod_sponsor_sales/cod_sponsor_sales.features.content.inc
new file mode 100644
index 0000000..bcfb167
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.features.content.inc
@@ -0,0 +1,121 @@
+<?php
+
+/**
+ * Implementation of hook_content_default_fields().
+ */
+function cod_sponsor_sales_content_default_fields() {
+  $fields = array();
+
+  // Exported field: field_image_cache
+  $fields['sponsorship-field_image_cache'] = array(
+    'field_name' => 'field_image_cache',
+    'type_name' => 'sponsorship',
+    'display_settings' => array(
+      'label' => array(
+        'format' => 'hidden',
+      ),
+      'teaser' => array(
+        'format' => 'hidden',
+      ),
+      'full' => array(
+        'format' => 'hidden',
+      ),
+      '4' => array(
+        'format' => 'hidden',
+      ),
+    ),
+    'widget_active' => '1',
+    'type' => 'filefield',
+    'required' => '0',
+    'multiple' => '1',
+    'module' => 'filefield',
+    'active' => '1',
+    'list_field' => '0',
+    'list_default' => 1,
+    'description_field' => '0',
+    'widget' => array(
+      'file_extensions' => 'gif jpg png',
+      'file_path' => NULL,
+      'progress_indicator' => NULL,
+      'max_filesize_per_file' => NULL,
+      'max_filesize_per_node' => NULL,
+      'max_resolution' => NULL,
+      'min_resolution' => NULL,
+      'alt' => NULL,
+      'custom_alt' => 1,
+      'title' => NULL,
+      'custom_title' => 1,
+      'title_type' => NULL,
+      'default_image' => NULL,
+      'use_default_image' => NULL,
+      'label' => 'Image',
+      'weight' => '-2',
+      'description' => '',
+      'type' => 'imagefield_widget',
+      'module' => 'imagefield',
+    ),
+  );
+
+  // Exported field: field_sponsorship_level
+  $fields['sponsorship-field_sponsorship_level'] = array(
+    'field_name' => 'field_sponsorship_level',
+    'type_name' => 'sponsorship',
+    'display_settings' => array(
+      'weight' => '5',
+      'parent' => '',
+      'label' => array(
+        'format' => 'hidden',
+      ),
+      'teaser' => array(
+        'format' => 'default',
+        'exclude' => 0,
+      ),
+      'full' => array(
+        'format' => 'default',
+        'exclude' => 0,
+      ),
+      '4' => array(
+        'format' => 'default',
+        'exclude' => 0,
+      ),
+      'token' => array(
+        'format' => 'default',
+        'exclude' => 0,
+      ),
+    ),
+    'widget_active' => '1',
+    'type' => 'text',
+    'required' => '0',
+    'multiple' => '0',
+    'module' => 'text',
+    'active' => '1',
+    'text_processing' => '0',
+    'max_length' => '',
+    'allowed_values' => 'Platinum
+Gold
+Silver
+Bronze
+Media',
+    'allowed_values_php' => '',
+    'widget' => array(
+      'default_value' => array(
+        '0' => array(
+          'value' => '',
+        ),
+      ),
+      'default_value_php' => NULL,
+      'label' => 'Sponsorship Level',
+      'weight' => '32',
+      'description' => '',
+      'type' => 'optionwidgets_select',
+      'module' => 'optionwidgets',
+    ),
+  );
+
+  // Translatables
+  // Included for use with string extractors like potx.
+  t('Image');
+  t('Sponsorship Level');
+
+  return $fields;
+}
diff --git a/cod_sponsor_sales/cod_sponsor_sales.features.inc b/cod_sponsor_sales/cod_sponsor_sales.features.inc
new file mode 100644
index 0000000..b891298
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.features.inc
@@ -0,0 +1,40 @@
+<?php
+
+/**
+ * Implementation of hook_ctools_plugin_api().
+ */
+function cod_sponsor_sales_ctools_plugin_api() {
+  list($module, $api) = func_get_args();
+  if ($module == "strongarm" && $api == "strongarm") {
+    return array("version" => 1);
+  }
+}
+
+/**
+ * Implementation of hook_uc_product_default_classes().
+ */
+function cod_sponsor_sales_uc_product_default_classes() {
+  $items = array(
+    'sponsorship' => array(
+      'name' => t('Sponsorship product'),
+      'module' => 'uc_product',
+      'description' => '',
+      'has_title' => '1',
+      'title_label' => t('Name'),
+      'has_body' => '1',
+      'body_label' => t('Description'),
+      'min_word_count' => '0',
+      'help' => '',
+    ),
+  );
+  return $items;
+}
+
+/**
+ * Implementation of hook_views_api().
+ */
+function cod_sponsor_sales_views_api() {
+  return array(
+    'api' => '2',
+  );
+}
diff --git a/cod_sponsor_sales/cod_sponsor_sales.features.uc_product_classes.inc b/cod_sponsor_sales/cod_sponsor_sales.features.uc_product_classes.inc
new file mode 100644
index 0000000..972e862
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.features.uc_product_classes.inc
@@ -0,0 +1,21 @@
+<?php
+
+/**
+ * Implementation of hook_node_info().
+ */
+function cod_sponsor_sales_node_info() {
+  $items = array(
+    'sponsorship' => array(
+      'name' => t('Sponsorship'),
+      'module' => 'uc_product',
+      'description' => '',
+      'has_title' => '1',
+      'title_label' => t('Name'),
+      'has_body' => '1',
+      'body_label' => t('Description'),
+      'min_word_count' => '0',
+      'help' => '',
+    ),
+  );
+  return $items;
+}
diff --git a/cod_sponsor_sales/cod_sponsor_sales.features.user_permission.inc b/cod_sponsor_sales/cod_sponsor_sales.features.user_permission.inc
new file mode 100644
index 0000000..a18a147
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.features.user_permission.inc
@@ -0,0 +1,66 @@
+<?php
+
+/**
+ * Implementation of hook_user_default_permissions().
+ */
+function cod_sponsor_sales_user_default_permissions() {
+  $permissions = array();
+
+  // Exported permission: create sponsorship products
+  $permissions['create sponsorship products'] = array(
+    'name' => 'create sponsorship products',
+    'roles' => array(
+      '0' => 'sponsor organizer',
+    ),
+  );
+
+  // Exported permission: delete all sponsorship products
+  $permissions['delete all sponsorship products'] = array(
+    'name' => 'delete all sponsorship products',
+    'roles' => array(),
+  );
+
+  // Exported permission: delete own sponsor content
+  $permissions['delete own sponsor content'] = array(
+    'name' => 'delete own sponsor content',
+    'roles' => array(),
+  );
+
+  // Exported permission: delete own sponsorship products
+  $permissions['delete own sponsorship products'] = array(
+    'name' => 'delete own sponsorship products',
+    'roles' => array(),
+  );
+
+  // Exported permission: edit all sponsorship products
+  $permissions['edit all sponsorship products'] = array(
+    'name' => 'edit all sponsorship products',
+    'roles' => array(
+      '0' => 'sponsor organizer',
+    ),
+  );
+
+  // Exported permission: edit field_sponsorship_level
+  $permissions['edit field_sponsorship_level'] = array(
+    'name' => 'edit field_sponsorship_level',
+    'roles' => array(
+      '0' => 'sponsor organizer',
+    ),
+  );
+
+  // Exported permission: edit own sponsor content
+  $permissions['edit own sponsor content'] = array(
+    'name' => 'edit own sponsor content',
+    'roles' => array(),
+  );
+
+  // Exported permission: edit own sponsorship products
+  $permissions['edit own sponsorship products'] = array(
+    'name' => 'edit own sponsorship products',
+    'roles' => array(
+      '0' => 'sponsor organizer',
+    ),
+  );
+
+  return $permissions;
+}
diff --git a/cod_sponsor_sales/cod_sponsor_sales.info b/cod_sponsor_sales/cod_sponsor_sales.info
new file mode 100644
index 0000000..f81ca55
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.info
@@ -0,0 +1,40 @@
+core = "6.x"
+dependencies[] = "content_permissions"
+dependencies[] = "features"
+dependencies[] = "imagefield"
+dependencies[] = "optionwidgets"
+dependencies[] = "strongarm"
+dependencies[] = "text"
+dependencies[] = "uc_node_checkout"
+dependencies[] = "uc_product"
+dependencies[] = "views"
+description = "Sell sponsorships through the website."
+features[content][] = "sponsorship-field_image_cache"
+features[content][] = "sponsorship-field_sponsorship_level"
+features[ctools][] = "strongarm:strongarm:1"
+features[uc_product_classes][] = "sponsorship"
+features[user_permission][] = "create sponsorship products"
+features[user_permission][] = "delete all sponsorship products"
+features[user_permission][] = "delete own sponsor content"
+features[user_permission][] = "delete own sponsorship products"
+features[user_permission][] = "edit all sponsorship products"
+features[user_permission][] = "edit field_sponsorship_level"
+features[user_permission][] = "edit own sponsor content"
+features[user_permission][] = "edit own sponsorship products"
+features[variable][] = "comment_anonymous_sponsorship"
+features[variable][] = "comment_controls_sponsorship"
+features[variable][] = "comment_default_mode_sponsorship"
+features[variable][] = "comment_default_order_sponsorship"
+features[variable][] = "comment_default_per_page_sponsorship"
+features[variable][] = "comment_form_location_sponsorship"
+features[variable][] = "comment_preview_sponsorship"
+features[variable][] = "comment_sponsorship"
+features[variable][] = "comment_subject_field_sponsorship"
+features[variable][] = "node_options_sponsorship"
+features[variable][] = "uc_image_sponsorship"
+features[variable][] = "uc_node_checkout_sponsor_restrictions"
+features[variable][] = "uc_product_shippable_sponsorship"
+features[views][] = "sponsorships"
+features[views_api][] = "api:2"
+name = "COD Sponsorship Sales"
+package = "COD"
diff --git a/cod_sponsor_sales/cod_sponsor_sales.install b/cod_sponsor_sales/cod_sponsor_sales.install
new file mode 100644
index 0000000..518f39c
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.install
@@ -0,0 +1,13 @@
+<?php
+
+/**
+ * Implementation of hook_enable(). 
+ */
+function cod_sponsor_sales_enable() {
+  $result = db_fetch_object(db_query("SELECT * FROM {uc_node_checkout_types} WHERE node_type = 'sponsor'"));
+  // Associate sponsorship products with the sponsor content type.
+  if (empty($result->node_view) && !isset($result->product_nid)) {
+    db_query("INSERT INTO {uc_node_checkout_types} (node_type, product_nid, node_view) VALUES ('sponsor', 0, 'sponsorships|default')");
+    drupal_set_message(t('Configured uc_node_checkout module for use with automated sponsorship sales.'));
+  }
+}
\ No newline at end of file
diff --git a/cod_sponsor_sales/cod_sponsor_sales.module b/cod_sponsor_sales/cod_sponsor_sales.module
new file mode 100644
index 0000000..ab200a3
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.module
@@ -0,0 +1,39 @@
+<?php
+
+include_once('cod_sponsor_sales.features.inc');
+
+/*
+ * Implementation of hook_form_alter().
+ */
+function cod_sponsor_sales_form_alter(&$form, &$form_state, $form_id) {
+  if ($form_id == 'uc_node_checkout_product_select_form') {
+    if ($form['type']['#value'] == 'sponsor') {
+      drupal_set_title(t('Purchase sponsorship'));
+      $form['product_nid']['#title'] = t('Choose sponsorship level');
+      $form['product_nid']['#description'] = '';
+    }
+  }
+}
+/*
+ * Implementation of hook_order().
+ */
+function cod_sponsor_sales_order($op, &$arg1, $arg2) {
+  global $user;
+  // When a payment is entered for an order that contains sponsorship products,
+  // update the sponsorship level of the corresponding sponsor.
+  if ($arg2 == uc_order_state_default('payment_received')) {
+    foreach ($arg1->products as $product) {
+      // We only care about sponsorship products.
+      $type = db_result(db_query("SELECT type FROM {node} WHERE nid = %d", $product->nid));
+      if ($type == 'sponsorship' && !empty($product->data['node_checkout_nid'])) {
+        $sponsorship = node_load($product->nid);
+        $sponsor = node_load($product->data['node_checkout_nid']);
+        // Set the sponsorship level of the sponsor to match that of the sponsorship node.
+        $sponsor->field_sponsorship_level[0]['value'] = $sponsorship->field_sponsorship_level[0]['value'];
+        node_save($sponsor);
+
+        uc_order_comment_save($arg1->order_id, $user->uid, t('Set sponsorship level of %title to %level.', array('%title' => $sponsor->title, '%level' => $sponsor->field_sponsorship_level[0]['value']))); 
+      }
+    }
+  }
+}
\ No newline at end of file
diff --git a/cod_sponsor_sales/cod_sponsor_sales.strongarm.inc b/cod_sponsor_sales/cod_sponsor_sales.strongarm.inc
new file mode 100644
index 0000000..8cd730f
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.strongarm.inc
@@ -0,0 +1,106 @@
+<?php
+
+/**
+ * Implementation of hook_strongarm().
+ */
+function cod_sponsor_sales_strongarm() {
+  $export = array();
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_anonymous_sponsorship';
+  $strongarm->value = 0;
+  $export['comment_anonymous_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_controls_sponsorship';
+  $strongarm->value = '3';
+  $export['comment_controls_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_default_mode_sponsorship';
+  $strongarm->value = '4';
+  $export['comment_default_mode_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_default_order_sponsorship';
+  $strongarm->value = '1';
+  $export['comment_default_order_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_default_per_page_sponsorship';
+  $strongarm->value = '50';
+  $export['comment_default_per_page_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_form_location_sponsorship';
+  $strongarm->value = '0';
+  $export['comment_form_location_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_preview_sponsorship';
+  $strongarm->value = '1';
+  $export['comment_preview_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_sponsorship';
+  $strongarm->value = '2';
+  $export['comment_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'comment_subject_field_sponsorship';
+  $strongarm->value = '1';
+  $export['comment_subject_field_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'node_options_sponsorship';
+  $strongarm->value = array(
+    0 => 'status',
+    1 => 'promote',
+  );
+  $export['node_options_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'uc_image_sponsorship';
+  $strongarm->value = '';
+  $export['uc_image_sponsorship'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'uc_node_checkout_sponsor_restrictions';
+  $strongarm->value = array(
+    0 => 'field_sponsorship_level',
+  );
+  $export['uc_node_checkout_sponsor_restrictions'] = $strongarm;
+
+  $strongarm = new stdClass;
+  $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+  $strongarm->api_version = 1;
+  $strongarm->name = 'uc_product_shippable_sponsorship';
+  $strongarm->value = 1;
+  $export['uc_product_shippable_sponsorship'] = $strongarm;
+
+  return $export;
+}
diff --git a/cod_sponsor_sales/cod_sponsor_sales.views_default.inc b/cod_sponsor_sales/cod_sponsor_sales.views_default.inc
new file mode 100644
index 0000000..672c70a
--- /dev/null
+++ b/cod_sponsor_sales/cod_sponsor_sales.views_default.inc
@@ -0,0 +1,190 @@
+<?php
+
+/**
+ * Implementation of hook_views_default_views().
+ */
+function cod_sponsor_sales_views_default_views() {
+  $views = array();
+
+  // Exported view: sponsorships
+  $view = new view;
+  $view->name = 'sponsorships';
+  $view->description = '';
+  $view->tag = '';
+  $view->view_php = '';
+  $view->base_table = 'node';
+  $view->is_cacheable = FALSE;
+  $view->api_version = 2;
+  $view->disabled = FALSE; /* Edit this to true to make a default view disabled initially */
+  $handler = $view->new_display('default', 'Defaults', 'default');
+  $handler->override_option('fields', array(
+    'sell_price' => array(
+      'label' => 'Sell price',
+      'alter' => array(
+        'alter_text' => 0,
+        'text' => '',
+        'make_link' => 0,
+        'path' => '',
+        'link_class' => '',
+        'alt' => '',
+        'prefix' => '',
+        'suffix' => '',
+        'target' => '',
+        'help' => '',
+        'trim' => 0,
+        'max_length' => '',
+        'word_boundary' => 1,
+        'ellipsis' => 1,
+        'html' => 0,
+        'strip_tags' => 0,
+      ),
+      'empty' => '',
+      'hide_empty' => 0,
+      'empty_zero' => 0,
+      'set_precision' => 0,
+      'precision' => '0',
+      'decimal' => '.',
+      'separator' => ',',
+      'prefix' => '',
+      'suffix' => '',
+      'format' => 'uc_price',
+      'revision' => 'themed',
+      'exclude' => 1,
+      'id' => 'sell_price',
+      'table' => 'uc_products',
+      'field' => 'sell_price',
+      'relationship' => 'none',
+    ),
+    'title' => array(
+      'label' => '',
+      'alter' => array(
+        'alter_text' => 1,
+        'text' => '[title] - [sell_price]',
+        'make_link' => 0,
+        'path' => '',
+        'link_class' => '',
+        'alt' => '',
+        'prefix' => '',
+        'suffix' => '',
+        'target' => '',
+        'help' => '',
+        'trim' => 0,
+        'max_length' => '',
+        'word_boundary' => 1,
+        'ellipsis' => 1,
+        'html' => 0,
+        'strip_tags' => 0,
+      ),
+      'empty' => '',
+      'hide_empty' => 0,
+      'empty_zero' => 0,
+      'link_to_node' => 0,
+      'exclude' => 0,
+      'id' => 'title',
+      'table' => 'node',
+      'field' => 'title',
+      'relationship' => 'none',
+    ),
+    'addtocartlink' => array(
+      'label' => '',
+      'alter' => array(
+        'alter_text' => 0,
+        'text' => '',
+        'make_link' => 0,
+        'path' => '',
+        'link_class' => '',
+        'alt' => '',
+        'prefix' => '',
+        'suffix' => '',
+        'target' => '',
+        'help' => '',
+        'trim' => 0,
+        'max_length' => '',
+        'word_boundary' => 1,
+        'ellipsis' => 1,
+        'html' => 0,
+        'strip_tags' => 0,
+      ),
+      'empty' => '',
+      'hide_empty' => 0,
+      'empty_zero' => 0,
+      'exclude' => 0,
+      'id' => 'addtocartlink',
+      'table' => 'uc_products',
+      'field' => 'addtocartlink',
+      'override' => array(
+        'button' => 'Override',
+      ),
+      'relationship' => 'none',
+    ),
+  ));
+  $handler->override_option('sorts', array(
+    'sell_price' => array(
+      'order' => 'DESC',
+      'id' => 'sell_price',
+      'table' => 'uc_products',
+      'field' => 'sell_price',
+      'relationship' => 'none',
+    ),
+  ));
+  $handler->override_option('filters', array(
+    'status' => array(
+      'operator' => '=',
+      'value' => '1',
+      'group' => '0',
+      'exposed' => FALSE,
+      'expose' => array(
+        'operator' => FALSE,
+        'label' => '',
+      ),
+      'id' => 'status',
+      'table' => 'node',
+      'field' => 'status',
+      'relationship' => 'none',
+    ),
+    'type' => array(
+      'operator' => 'in',
+      'value' => array(
+        'sponsorship' => 'sponsorship',
+      ),
+      'group' => '0',
+      'exposed' => FALSE,
+      'expose' => array(
+        'operator' => FALSE,
+        'label' => '',
+      ),
+      'id' => 'type',
+      'table' => 'node',
+      'field' => 'type',
+      'relationship' => 'none',
+    ),
+  ));
+  $handler->override_option('access', array(
+    'type' => 'none',
+  ));
+  $handler->override_option('cache', array(
+    'type' => 'none',
+  ));
+  $handler->override_option('empty', 'No sponsorships are currently available.');
+  $handler->override_option('empty_format', '1');
+  $handler = $view->new_display('page', 'Page', 'page_1');
+  $handler->override_option('path', 'sponsors/become-sponsor');
+  $handler->override_option('menu', array(
+    'type' => 'normal',
+    'title' => 'Become a sponsor',
+    'description' => 'Become a sponsor',
+    'weight' => '1',
+    'name' => 'primary-links',
+  ));
+  $handler->override_option('tab_options', array(
+    'type' => 'none',
+    'title' => '',
+    'description' => '',
+    'weight' => 0,
+    'name' => 'navigation',
+  ));
+
+  $views[$view->name] = $view;
+
+  return $views;
+}
