$(document).ready(function(){
  
  
  $(".FooterMenu li").hover(function(e){
    $(this).find("a").animate({color: '#EBE4E5'});
  },function(e){
    $(this).find("a").animate({color: '#888'}); }                           
                                   
                                   );
 // $(".TopMenu li").hover(function(e){
 //   $(this).find("a").animate({color: '#4A4A4A'});
 //   $(this).find("a").css('text-decoration','none');
 //   $(this).css('background-color', '#F0F0F0');
 //   $(this).css('border', '1px solid');
    //$(this).css('border-bottom', '0px solid');
 // },function(e){
  //  $(this).find("a").animate({color: '#545454'}); 
  //  $(this).css('background-color', 'transparent');
 //   $(this).find("a").css('text-decoration','none');
 //   $(this).css('border', '1px solid transparent');
 // }                                 
 //                                  );
 
});

