$(function(){
  
  // article toggles: news.html
  $('.article').each(function(i, article){
    
    // gather necessary stuff
    var teaser_text = $('.article-teaser', article).text();
    var excerpt = $('<div class="article-excerpt">'+ teaser_text +'</div>').appendTo(article);
    var content = $('.article-content', article);
    
    // construct the more link, toggles the content to visible
    var more_link = $('<a href="#more" class="more-link">Read More »</a>').click(function(){
      $(article).toggleClass('show-full');
      return false;
    }).appendTo(excerpt);
    
    // construct the "less" link, toggles the teaser to visible
    var less_link = $('<a href="#less" class="less-link">« Close</a>').click(function(){
      $(article).toggleClass('show-full');
      return false;
    }).appendTo(content);
    
  });

});
