jQuery(document).ready(function(){
    jQuery(".link1 a").stop().hover(function() {
    jQuery(this).stop().animate({ color: "#808080" }, 400);
    },function() {
    jQuery(this).animate({ color: "#A0A0A0" }, 500);
    });
});