// -------------------------------------------------------------------
// NFSBlogFeed br http://www.newsfromspace.com
// Adapted from code found at http://www.dynamicdrive.com/dynamicindex18/gajaxrssdisplayer.htm
// Created: 15 Nov 2008
// -------------------------------------------------------------------

var cssfeed=new gfeedfetcher("nfsblog", "rssread", "_top")
cssfeed.addFeed("NewsFromSpace Blog", "http://blog.newsfromspace.com/feed/rss/") //Specify "label" plus URL to RSS feed
// cssfeed.displayoptions("datetime") //show the specified additional fields
cssfeed.setentrycontainer("p") //Display each entry as a paragraph (p element)
cssfeed.filterfeed(6, "date") //Show 6 entries, sort by date
cssfeed.init() //Always call this last