$('document').ready(function(){
$('a.men').hover(function(){
   $(this).animate({color : "#1C1C1C"},200);
 },function(){
   $(this).animate({color : "#928E8B"},200);
 });
 });
 
