$(function() {


$('a').mouseover(function (){ $(this).stop().animate({"color": "#51485f"}, 400, 'easeInOutSine'); return true; });
$('a').mouseout(function (){ $(this).stop().animate({"color": "#999999"}, 400, 'easeInOutSine'); return true; });


$('.pageNav .content a').mouseover(function (){ $(this).stop().animate({"color": "#000"}, 400, 'easeInOutSine'); return true; });
$('.pageNav .content a').mouseout(function (){ $(this).stop().animate({"color": "#666666"}, 400, 'easeInOutSine'); return true; });

});