$(document).ready(function()
  {
    $('#sections a').hover(function()
      {
        $(this).children().fadeIn('fast');
      }, function()
      {
        $(this).children().fadeOut('fast');
      });          
  });


