// ==UserScript==
// @name           Gmail Labels First
// @namespace      http://uwmike.com
// @description    Place the Label/Chat boxes above the main navigation.
// @include        http://mail.google.com/*
// @include        https://mail.google.com/*
// ==/UserScript==

window.addEventListener('load', function() {
  if (unsafeWindow.gmonkey) {
    unsafeWindow.gmonkey.load('1.0', function(gmail) {
      var leftPane = gmail.getNavPaneElement().childNodes[0];
      var labelAndChatBox = leftPane.childNodes[6];
      var navBox = leftPane.childNodes[0];
      labelAndChatBox.style.marginBottom = "10px";
      leftPane.insertBefore(labelAndChatBox, navBox);
    });
  }
}, true);
