function homepage() {
  $(document).ready(function() {
    $('#agenda_topic a').featureList({
      output : '#feature_list .warp_list',
      tart_item : 1
    });
    $('.header .Image').not(':first').hide();
    $('#legend').text($('.header .Image:visible img').attr('title'));
    if ($('.header .Image').length > 1)
      setInterval(function() {
        var i = $('.header .Image:visible').eq(0);
        i.fadeOut('slow');
        i = i.next();
        if (!i.length)
          i = $('.header .Image:first');
        $('#legend').text('');
        i.fadeIn('slow',function(){
          $('#legend').text(i.children('img').attr('title'));
        });
      },5000);
  });
}
