diff --git a/alpha/alpha.info b/alpha/alpha.info
index 537a9b6..43a9a64 100644
--- a/alpha/alpha.info
+++ b/alpha/alpha.info
@@ -118,6 +118,7 @@ settings[alpha_css][alpha-alpha.css] = 'alpha-alpha.css'
 settings[alpha_css][alpha-mobile.css] = 'alpha-mobile.css'
 settings[alpha_debug_block_toggle] = '1'
 settings[alpha_debug_block_active] = '1'
+settings[alpha_debug_status_toggle] = '1'
 settings[alpha_debug_grid_toggle] = '1'
 settings[alpha_debug_grid_active] = '1'
 settings[alpha_debug_grid_roles][1] = '1'
diff --git a/alpha/css/alpha-debug.css b/alpha/css/alpha-debug.css
index ad752f5..c2241f5 100644
--- a/alpha/css/alpha-debug.css
+++ b/alpha/css/alpha-debug.css
@@ -71,7 +71,8 @@
 }
 
 .alpha-grid-toggle,
-.alpha-block-toggle {
+.alpha-block-toggle,
+.alpha-status-toggle {
   width: 24px;
   height: 22px;
   position: fixed;
@@ -89,8 +90,14 @@
   top: 110px;
 }
 
+.alpha-status-toggle {
+  background: url(../images/status-toggle.png) no-repeat 0 -22px;
+  top: 140px;
+  }
+
 .alpha-grid-debug .alpha-grid-toggle,
-.alpha-region-debug .alpha-block-toggle {
+.alpha-region-debug .alpha-block-toggle,
+.alpha-status-debug .alpha-status-toggle {
   background-position: 0 0;
 }
 
@@ -104,4 +111,27 @@
 .alpha-block-toggle:focus,
 .alpha-block-toggle:active {
   width: 72px;
+}
+
+.alpha-status-toggle:hover,
+.alpha-status-toggle:focus,
+.alpha-status-toggle:active {
+  width: 62px;
+}
+.alpha-status-bar{
+  display: none;
+  }
+.alpha-status-debug .alpha-status-bar {
+  display: block;
+  z-index: 999;
+  max-width: 500px;
+  background: #000;
+  position: fixed;
+  bottom: 0;
+  color: #FFF;
+  font-size: 16px;
+  font-weight: bold;
+  opacity: .8;
+  filter: alpha(opacity=80);
+  padding: 5px
 }
\ No newline at end of file
diff --git a/alpha/includes/base.inc b/alpha/includes/base.inc
index 57878b5..ccc0ae7 100644
--- a/alpha/includes/base.inc
+++ b/alpha/includes/base.inc
@@ -81,6 +81,7 @@ class alpha_theme_container {
         'debug' => array(
           'block' => alpha_theme_get_setting('alpha_debug_block_toggle', FALSE, $this->theme),
           'block_active' => alpha_theme_get_setting('alpha_debug_block_active', FALSE, $this->theme),
+          'status' => alpha_theme_get_setting('alpha_debug_status_toggle', FALSE, $this->theme),
           'grid' => alpha_theme_get_setting('alpha_debug_grid_toggle', FALSE, $this->theme),
           'grid_active' => alpha_theme_get_setting('alpha_debug_grid_active', FALSE, $this->theme),
           'roles' => array_keys(array_filter(alpha_theme_get_setting('alpha_debug_grid_roles', array(), $this->theme))),
diff --git a/alpha/includes/theme-settings-general.inc b/alpha/includes/theme-settings-general.inc
index 1428e15..079a41e 100644
--- a/alpha/includes/theme-settings-general.inc
+++ b/alpha/includes/theme-settings-general.inc
@@ -229,6 +229,11 @@ function alpha_theme_settings_general(&$form, &$form_state) {
       ),
     ),
   );
+   $form['alpha_settings']['alpha_debug']['alpha_debug_status_toggle'] = array(
+    '#type' => 'checkbox',
+    '#title' => t('Enable the debugging status bar to view information such as CSS and Delta Settings.'),
+    '#default_value' => $theme->settings['debug']['status'],
+  );
 
   $form['alpha_settings']['alpha_debug']['alpha_debug_grid_toggle'] = array(
     '#type' => 'checkbox',
diff --git a/alpha/js/alpha-debug.js b/alpha/js/alpha-debug.js
index 0465aad..a2f85bc 100644
--- a/alpha/js/alpha-debug.js
+++ b/alpha/js/alpha-debug.js
@@ -13,6 +13,10 @@
           $('body').toggleClass('alpha-region-debug');
           return false;
         });
+        $('.alpha-status-toggle').click(function() {
+          $('body').toggleClass('alpha-status-debug');
+          return false;
+        });
       });
     }
   };
diff --git a/alpha/template.php b/alpha/template.php
index 2e94310..f662f13 100644
--- a/alpha/template.php
+++ b/alpha/template.php
@@ -164,6 +164,37 @@ function alpha_page_alter(&$vars) {
         '#markup' => '<a class="alpha-grid-toggle" href="#"></a>',
       );
     }
+   if ($theme->settings['debug']['status']) {
+        $deltaname = delta_get_current($GLOBALS['theme']);
+        if($theme->settings['responsive']){
+        	if (module_exists('delta') && $deltaname != null){
+      		$vars['page_bottom']['alpha_status_bar'] = array(
+      		'#type' => 'markup',
+      		'#markup' => '<a class="alpha-status-toggle" href="#"></a><div class="alpha-status-bar"><div class="alpha-status"></div><div class="delta-status">and the '.$deltaname.' delta layout.</div></div>',
+      		);
+      		}
+      		else{
+      			$vars['page_bottom']['alpha_status_bar'] = array(
+        		'#type' => 'markup',
+        		'#markup' => '<a class="alpha-status-toggle" href="#"></a><div class="alpha-status-bar"><div class="alpha-status"></div></div>',
+      			);
+      		}
+      	}
+      	else{
+      		if (module_exists('delta') && $deltaname != null){
+      			$vars['page_bottom']['alpha_status_bar'] = array(
+      			'#type' => 'markup',
+      			'#markup' => '<a class="alpha-status-toggle" href="#"></a><div class="alpha-status-bar"><div class="alpha-status-static">You are currently using global.css</div><div class="delta-status">and the '.$deltaname.' delta layout.</div></div>',
+      			);
+      		}
+      		else{
+      			$vars['page_bottom']['alpha_status_bar'] = array(
+        		'#type' => 'markup',
+        		'#markup' => '<a class="alpha-status-toggle" href="#"></a><div class="alpha-status-bar"><div class="alpha-status-static">You are currently using global.css</div></div>',
+      			);
+      		}
+      	}
+    }
     if ($theme->settings['debug']['block']) {
       $vars['page_bottom']['alpha_block_toggle'] = array(
         '#type' => 'markup',
diff --git a/omega/js/omega-mediaqueries.js b/omega/js/omega-mediaqueries.js
index 35d14a1..5ca6a25 100644
--- a/omega/js/omega-mediaqueries.js
+++ b/omega/js/omega-mediaqueries.js
@@ -23,6 +23,9 @@ Drupal.omega = Drupal.omega || {};
       $('body').removeClass('responsive-layout-' + previous).addClass('responsive-layout-' + current);      
       $.event.trigger('responsivelayout', {from: previous, to: current});
     }
+    if(current == 'mobile'){current = 'global';}
+    $('.alpha-status').html('You are currently using ' + current + '.css');
+    if(current == 'global'){current = 'mobile';}
   };
   
   /**
