(function($) {
  $(function() {
    $.jGFeed('http://www.franklearning.com/feed/',
      function(feed) {
        if(!feed) return false
        var entry_list = $('<ul></ul>')
        $.each(feed.entries, function(i, entry) {
          var publishedDate = new Date(entry.publishedDate)
          var localeDate = publishedDate.toLocaleDateString()
          var timeAgo = $.timeago(publishedDate)
          entry_list.append('<li><a class="title" target="_blank" href="' + entry.link + '">' + entry.title + '</a> '
                            + '<div class="date" title="' + localeDate + '">' + timeAgo + '</div></li>')
        })
        $('<section id="news"><h2>From the blog:</h2></section>').insertAfter('footer nav').append(entry_list)
      },
      2)
    $('#members-videos a').fancybox({
      autoDimensions: false,
      width:          700,
      height:         560,
      overlayOpacity: 0.8,
      overlayColor:   '#000',
      centerOnScroll: true,
      transitionIn:  'elastic',
      transitionOut: 'elastic'
    })
  })
})(jQuery)
