$(document).ready(function() {

  $('#text').hide();
  $('#slide').click(function() {
    $('#text').toggle("fade");
    $(this).text($(this).text() == 'Show Project Info' ? 'Hide Project Info' : 'Show Project Info');
    return false;
  });
  
  $('li.section-title ul').hide();
  $('li.section-title').click(function() {
     $(this).parent().find("li.section-title ul").toggle("fade", { direction: "up" }, 1000);
  });
  
});
