/* Sorry, Lincoln. At least it's still completely usable without it :-) */

window.onload = function() {
  document.getElementById("nav-about").onmouseover =
    function() {
      document.getElementById("header-left").style.background = "#390000 url('/images/header_nav_on.gif')";
    }
    
  document.getElementById("nav-about").onmouseout =
    function() {
      var elt = document.getElementById("header-left");
      if (elt.className != 'on') {
        elt.style.background = "#790000 url('/images/header_nav.gif')";
      }
    }
    
  document.getElementById("nav-culture").onmouseover =
    function() {
      document.getElementById("header-mid").style.background = "#390000 url('/images/header_nav_on.gif')";
    }
    
  document.getElementById("nav-culture").onmouseout =
    function() {
      var elt = document.getElementById("header-mid");
      if (elt.className != 'on') {
        elt.style.background = "#790000 url('/images/header_nav.gif')";
      }
    }
    
  document.getElementById("nav-login").onmouseover =
    function() {
      document.getElementById("header").style.background = "#390000 url('/images/header_nav_on.gif')";
    }
    
  document.getElementById("nav-login").onmouseout =
    function() {
      var elt = document.getElementById("header");
      if (elt.className != 'on') {
        elt.style.background = "#790000 url('/images/header_nav.gif')";
      }
    }
}
