function topTenFaceHighlight(){
  function expand(){
    $(this).stop().animate({ width:52, height:53 },200);
  }

  function contract(){
    $(this).stop().animate({ width:48, height:49 },200);
  }

  $("#topten ul a").hover( expand , contract );


}


$(topTenFaceHighlight);
