$(document).ready(function(){
  
  $("#boxNav a").find("span").stop().animate({"opacity":0},500);
  
  
  var hovered;
  $("#boxNav a").mouseover(function(){
    hovered = $(this).attr("id");
    $(this).find("span").stop().animate({"opacity":1},500);
    $("#nav a."+hovered).stop().animate({"color":"#ffffff"}, 500);
  }).mouseleave(function(){
    hovered = $(this).attr("id");
    $(this).find("span").stop().animate({"opacity":0},500);
    $("#nav a."+hovered).stop().animate({"color":"#717171"}, 500);
  });
  
  
  $("#nav a:not(#active)").mouseover(function(){
    hovered = $(this).attr("class");
    $(this).stop().animate({"color":"#ffffff"}, 500);
    $("#boxNav a#"+hovered).find("span").stop().animate({"opacity":1}, 500);
  }).mouseleave(function(){
    hovered = $(this).attr("class");
    $(this).stop().animate({"color":"#717171"}, 500);
    $("#boxNav a#"+hovered).find("span").stop().animate({"opacity":0}, 500);
  });
  
  
  $("#subNav a:not(#active), a#last").mouseover(function(){
    $(this).stop().animate({"color":"#666"}, 500);
  }).mouseleave(function(){
    $(this).stop().animate({"color":"#000"}, 500);
  });
  
  $("#colophon").mouseover(function(){
    $(this).stop().animate({"color":"#ffffff"}, 500);
  }).mouseleave(function(){
    $(this).stop().animate({"color":"#717171"}, 500);
  });
  
  // $("#nowHiring").mouseover(function(){
  //   $(this).stop().animate({"opacity":1},500);
  // }).mouseleave(function(){
  //   $(this).stop().animate({"opacity":0.6},500);
  // });
  
  
});
