var speed = 250;

$('#wrapper #top h1 a').mouseover(function() {
  $(this).animate({ color: "#5a5652" }, speed);
});
$('#wrapper #top h1 a').mouseout(function() {
  $(this).animate({ color: "#cfc6bc" }, speed);
});

$('#wrapper #bottom ul li a').mouseover(function() {
  $('#wrapper #bottom ul li a').animate({ color: "#5a5652" }, 1);
  $(this).animate({ color: "#cfc6bc" }, speed);
});
$('#wrapper #bottom ul li a').mouseout(function() {
  $(this).animate({ color: "#5a5652" }, speed);
});