$(document).ready(function() {
  $('.hero').cycle({
  fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
  timeout: 6000
  });

 $('h3').each(function () {
    var id = $(this).attr('id');
    var answer = '#' + id + 'a';
    $(this).bind('click', function() {
      if ($(answer).is(':visible')) {
        $(answer).hide('fast');
      } else {
       $(answer).show('fast');
      }
    });
  });
});
