$(document).ready(function() {
  
  $('ul.cool li:not(.bullet)').css({'text-decoration': 'underline', 'cursor': 'pointer'}).click(function() {
      var content = $(this).next('li:not(.bullet)').html();
      $('#second-column').fadeOut('slow', function() {
        $(this).html(content);
        $(this).fadeIn('slow');
      });
  });
  $('ul.cool li:not(.bullet) + li:not(.bullet)').hide();
  
});
