diff --git a/modules/julio_clubs/julio_clubs.module b/modules/julio_clubs/julio_clubs.module
index 7214b8b..db5603a 100644
--- a/modules/julio_clubs/julio_clubs.module
+++ b/modules/julio_clubs/julio_clubs.module
@@ -7,6 +7,42 @@
 include_once('julio_clubs.features.inc');
 
 /**
+ * Implements hook_boot().
+ *
+ * Initialize a global variable containing the default Clubs section title
+ * where a custom title is absent
+ */
+function julio_clubs_boot() {
+  if (!isset($GLOBALS['julio_clubs_title'])) {
+    global $julio_clubs_title;
+    $julio_clubs_title = 'Student Life';
+    cache_clear_all('*', 'cache_views', TRUE);
+  }
+}
+
+/**
+ * Implements hook_init().
+ *
+ * Initialize a global variable containing the Clubs section title
+ */
+function julio_clubs_init() {
+  global $julio_clubs_title;
+  $julio_clubs_nid = variable_get('julio_clubs_nid', 0);
+  $julio_clubs_title = db_query("SELECT title FROM {node} WHERE (nid) = :nid", array(':nid' => $julio_clubs_nid))->fetchField();
+}
+
+/**
+ * Implements hook_node_update().
+ * Clear cache_views in order for $julio_clubs_title to be updated in Views
+ */
+function julio_clubs_node_update($node) {
+  global $julio_clubs_title;
+  if ($node->nid == variable_get('julio_clubs_nid', 0) && $node->title != $julio_clubs_title) {
+    cache_clear_all('*', 'cache_views', TRUE);
+  }
+}
+
+/**
  * Implements hook_block_view_alter().
  *
  * Can't use hook_block_view_MODULE_DELTA_alter because delta has '-'
diff --git a/modules/julio_clubs/modules/julio_clubs_announcements/julio_clubs_announcements.views_default.inc b/modules/julio_clubs/modules/julio_clubs_announcements/julio_clubs_announcements.views_default.inc
index bafdfc6..5f87382 100644
--- a/modules/julio_clubs/modules/julio_clubs_announcements/julio_clubs_announcements.views_default.inc
+++ b/modules/julio_clubs/modules/julio_clubs_announcements/julio_clubs_announcements.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_clubs_announcements_views_default_views() {
   $export = array();
+  global $julio_clubs_title;
 
   $view = new view;
   $view->name = 'julio_clubs_announcements';
@@ -22,11 +23,11 @@ function julio_clubs_announcements_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Student Life News';
+  $handler->display->display_options['title'] = t("@title News", array('@title' => $julio_clubs_title));
   $handler->display->display_options['css_class'] = 'event-block';
   $handler->display->display_options['use_more'] = TRUE;
   $handler->display->display_options['use_more_always'] = TRUE;
-  $handler->display->display_options['use_more_text'] = 'All Student Life News';
+  $handler->display->display_options['use_more_text'] = t("All @title News", array('@title' => $julio_clubs_title));
   $handler->display->display_options['access']['type'] = 'perm';
   $handler->display->display_options['cache']['type'] = 'none';
   $handler->display->display_options['query']['type'] = 'views_query';
diff --git a/modules/julio_clubs/modules/julio_clubs_events/julio_clubs_events.views_default.inc b/modules/julio_clubs/modules/julio_clubs_events/julio_clubs_events.views_default.inc
index 29fa8ba..de46f77 100644
--- a/modules/julio_clubs/modules/julio_clubs_events/julio_clubs_events.views_default.inc
+++ b/modules/julio_clubs/modules/julio_clubs_events/julio_clubs_events.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_clubs_events_views_default_views() {
   $export = array();
+  global $julio_clubs_title;
 
   $view = new view;
   $view->name = 'julio_clubs_events';
@@ -22,7 +23,7 @@ function julio_clubs_events_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Student Life Calendar';
+  $handler->display->display_options['title'] = t("@title Calendar", array('@title' => $julio_clubs_title));
   $handler->display->display_options['css_class'] = 'event-block';
   $handler->display->display_options['use_more'] = TRUE;
   $handler->display->display_options['use_more_always'] = TRUE;
@@ -284,7 +285,7 @@ function julio_clubs_events_views_default_views() {
   /* Display: Upcoming - All */
   $handler = $view->new_display('block', 'Upcoming - All', 'block_1');
   $handler->display->display_options['defaults']['title'] = FALSE;
-  $handler->display->display_options['title'] = 'Upcoming Student Life Events';
+  $handler->display->display_options['title'] = t("Upcoming @title Events", array('@title' => $julio_clubs_title));
   $handler->display->display_options['defaults']['arguments'] = FALSE;
 
   /* Display: Feed */
diff --git a/modules/julio_departments/julio_departments.module b/modules/julio_departments/julio_departments.module
index 44214c7..05a077d 100644
--- a/modules/julio_departments/julio_departments.module
+++ b/modules/julio_departments/julio_departments.module
@@ -7,6 +7,42 @@
 include_once('julio_departments.features.inc');
 
 /**
+ * Implements hook_boot().
+ *
+ * Initialize a global variable containing the default Departments section title
+ * where a custom title is absent
+ */
+function julio_departments_boot() {
+  if (!isset($GLOBALS['julio_departments_title'])) {
+    global $julio_departments_title;
+    $julio_departments_title = 'Academics';
+    cache_clear_all('*', 'cache_views', TRUE);
+  }
+}
+
+/**
+ * Implements hook_init().
+ *
+ * Initialize a global variable containing the Departments section title
+ */
+function julio_departments_init() {
+  global $julio_departments_title;
+  $julio_departments_nid = variable_get('julio_departments_nid', 0);
+  $julio_departments_title = db_query("SELECT title FROM {node} WHERE (nid) = :nid", array(':nid' => $julio_departments_nid))->fetchField();
+}
+
+/**
+ * Implements hook_node_update().
+ * Clear cache_views in order for $julio_departments_title to be updated in Views
+ */
+function julio_departments_node_update($node) {
+  global $julio_departments_title;
+  if ($node->nid == variable_get('julio_departments_nid', 0) && $node->title != $julio_departments_title) {
+    cache_clear_all('*', 'cache_views', TRUE);
+  }
+}
+
+/**
  * Implements hook_block_view_alter().
  *
  * Can't use hook_block_view_MODULE_DELTA_alter because delta has '-'
diff --git a/modules/julio_departments/julio_departments.views_default.inc b/modules/julio_departments/julio_departments.views_default.inc
index 0198a20..86231e4 100644
--- a/modules/julio_departments/julio_departments.views_default.inc
+++ b/modules/julio_departments/julio_departments.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_departments_views_default_views() {
   $export = array();
+  global $julio_departments_title;
 
   $view = new view;
   $view->name = 'julio_departments';
@@ -22,7 +23,7 @@ function julio_departments_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Academics';
+  $handler->display->display_options['title'] = $julio_departments_title;
   $handler->display->display_options['access']['type'] = 'perm';
   $handler->display->display_options['cache']['type'] = 'none';
   $handler->display->display_options['query']['type'] = 'views_query';
diff --git a/modules/julio_departments/modules/julio_departments_announcements/julio_departments_announcements.views_default.inc b/modules/julio_departments/modules/julio_departments_announcements/julio_departments_announcements.views_default.inc
index de5f8d5..88ace80 100644
--- a/modules/julio_departments/modules/julio_departments_announcements/julio_departments_announcements.views_default.inc
+++ b/modules/julio_departments/modules/julio_departments_announcements/julio_departments_announcements.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_departments_announcements_views_default_views() {
   $export = array();
+  global $julio_departments_title;
 
   $view = new view;
   $view->name = 'julio_departments_announcements';
@@ -22,11 +23,11 @@ function julio_departments_announcements_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Academics News';
+  $handler->display->display_options['title'] = t("@title News", array('@title' => $julio_departments_title));
   $handler->display->display_options['css_class'] = 'event-block';
   $handler->display->display_options['use_more'] = TRUE;
   $handler->display->display_options['use_more_always'] = TRUE;
-  $handler->display->display_options['use_more_text'] = 'All Academics News';
+  $handler->display->display_options['use_more_text'] = t("All @title News", array('@title' => $julio_departments_title));
   $handler->display->display_options['access']['type'] = 'perm';
   $handler->display->display_options['cache']['type'] = 'none';
   $handler->display->display_options['query']['type'] = 'views_query';
diff --git a/modules/julio_departments/modules/julio_departments_events/julio_departments_events.views_default.inc b/modules/julio_departments/modules/julio_departments_events/julio_departments_events.views_default.inc
index 0d6c0ee..b5cad52 100644
--- a/modules/julio_departments/modules/julio_departments_events/julio_departments_events.views_default.inc
+++ b/modules/julio_departments/modules/julio_departments_events/julio_departments_events.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_departments_events_views_default_views() {
   $export = array();
+  global $julio_departments_title;
 
   $view = new view;
   $view->name = 'julio_departments_events';
@@ -22,7 +23,7 @@ function julio_departments_events_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Academics Calendar';
+  $handler->display->display_options['title'] = t("@title Calendar", array('@title' => $julio_departments_title));
   $handler->display->display_options['css_class'] = 'event-block';
   $handler->display->display_options['use_more'] = TRUE;
   $handler->display->display_options['use_more_always'] = TRUE;
diff --git a/modules/julio_teams/julio_teams.module b/modules/julio_teams/julio_teams.module
index 2c0f767..945f710 100644
--- a/modules/julio_teams/julio_teams.module
+++ b/modules/julio_teams/julio_teams.module
@@ -7,6 +7,42 @@
 include_once('julio_teams.features.inc');
 
 /**
+ * Implements hook_boot().
+ *
+ * Initialize a global variable containing the default Teams section title
+ * where a custom title is absent
+ */
+function julio_teams_boot() {
+  if (!isset($GLOBALS['julio_teams_title'])) {
+    global $julio_teams_title;
+    $julio_teams_title = 'Athletics';
+    cache_clear_all('*', 'cache_views', TRUE);
+  }
+}
+
+/**
+ * Implements hook_init().
+ *
+ * Initialize a global variable containing the Teams section title
+ */
+function julio_teams_init() {
+  global $julio_teams_title;
+  $julio_teams_nid = variable_get('julio_teams_nid', 0);
+  $julio_teams_title = db_query("SELECT title FROM {node} WHERE (nid) = :nid", array(':nid' => $julio_teams_nid))->fetchField();
+}
+
+/**
+ * Implements hook_node_update().
+ * Clear cache_views in order for $julio_departments_title to be updated in Views
+ */
+function julio_teams_node_update($node) {
+  global $julio_teams_title;
+  if ($node->nid == variable_get('julio_teams_nid', 0) && $node->title != $julio_teams_title) {
+    cache_clear_all('*', 'cache_views', TRUE);
+  }
+}
+
+/**
  * Implements hook_block_view_alter().
  *
  * Can't use hook_block_view_MODULE_DELTA_alter because delta has '-'
diff --git a/modules/julio_teams/julio_teams.views_default.inc b/modules/julio_teams/julio_teams.views_default.inc
index a7bb544..ba3e34a 100644
--- a/modules/julio_teams/julio_teams.views_default.inc
+++ b/modules/julio_teams/julio_teams.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_teams_views_default_views() {
   $export = array();
+  global $julio_teams_title;
 
   $view = new view;
   $view->name = 'julio_teams';
@@ -22,7 +23,7 @@ function julio_teams_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Athletics';
+  $handler->display->display_options['title'] = $julio_teams_title;
   $handler->display->display_options['access']['type'] = 'perm';
   $handler->display->display_options['cache']['type'] = 'none';
   $handler->display->display_options['query']['type'] = 'views_query';
diff --git a/modules/julio_teams/modules/julio_teams_announcements/julio_teams_announcements.views_default.inc b/modules/julio_teams/modules/julio_teams_announcements/julio_teams_announcements.views_default.inc
index 8d93300..41118f5 100644
--- a/modules/julio_teams/modules/julio_teams_announcements/julio_teams_announcements.views_default.inc
+++ b/modules/julio_teams/modules/julio_teams_announcements/julio_teams_announcements.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_teams_announcements_views_default_views() {
   $export = array();
+  global $julio_teams_title;
 
   $view = new view;
   $view->name = 'julio_teams_announcements';
@@ -22,11 +23,11 @@ function julio_teams_announcements_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Athletics News';
+  $handler->display->display_options['title'] = t("@title News", array('@title' => $julio_teams_title));
   $handler->display->display_options['css_class'] = 'event-block';
   $handler->display->display_options['use_more'] = TRUE;
   $handler->display->display_options['use_more_always'] = TRUE;
-  $handler->display->display_options['use_more_text'] = 'All Athletics News';
+  $handler->display->display_options['use_more_text'] = t("All @title News", array('@title' => $julio_teams_title));
   $handler->display->display_options['access']['type'] = 'perm';
   $handler->display->display_options['cache']['type'] = 'none';
   $handler->display->display_options['query']['type'] = 'views_query';
diff --git a/modules/julio_teams/modules/julio_teams_events/julio_teams_events.views_default.inc b/modules/julio_teams/modules/julio_teams_events/julio_teams_events.views_default.inc
index f3320ff..fec4489 100644
--- a/modules/julio_teams/modules/julio_teams_events/julio_teams_events.views_default.inc
+++ b/modules/julio_teams/modules/julio_teams_events/julio_teams_events.views_default.inc
@@ -9,6 +9,7 @@
  */
 function julio_teams_events_views_default_views() {
   $export = array();
+  global $julio_teams_title;
 
   $view = new view;
   $view->name = 'julio_teams_calendar';
@@ -22,7 +23,7 @@ function julio_teams_events_views_default_views() {
 
   /* Display: Master */
   $handler = $view->new_display('default', 'Master', 'default');
-  $handler->display->display_options['title'] = 'Athletics Calendar';
+  $handler->display->display_options['title'] = t("@title Calendar", array('@title' => $julio_teams_title));
   $handler->display->display_options['css_class'] = 'event-block';
   $handler->display->display_options['use_more'] = TRUE;
   $handler->display->display_options['use_more_always'] = TRUE;
