if (!Array.indexOf) {
  Array.prototype.indexOf = function (obj, start) {
    for (var i = (start || 0); i < this.length; i++) {
      if (this[i] == obj) {
        return i;
      }
    }
    return -1;
  }
}

jQuery(document).ready(function() {
  // Home feeds - temporal
  if (jQuery("#rss-blog-title").size() == 1) {
    var blogFeed = new google.feeds.Feed("http://emprendecoaching.wordpress.com/feed/");
    blogFeed.setNumEntries(1);
    blogFeed.load(drawRssBlog);
  }
  
  function drawRssBlog(result){
    if (!result.error){
      var thefeeds = result.feed.entries
      $('#rss-blog-title').html('<a class="post-title" href="' + thefeeds[0].link + '" title="' + thefeeds[0].title + '" target="_blank">' + thefeeds[0].title + '</a>');
      $('#rss-blog-content').html(thefeeds[0].contentSnippet);
    }      
  }
});
