// Controls the feed source and other options. Can read more about it here: 
jQuery(document).ready(function () {
	jQuery("#rssDiv").rssfeed('http://feeds.bbci.co.uk/news/business/rss.xml',{
		limit: 10, //Number of news articles
		header: false, //If true, includes the header section containing the feed name and link.
		titletag: 'h4', //Specifies the HTML tag for the feed title.
		date: false, //If true, includes the feed date section.
		content: false, //If true, includes the feed description.
		snippet: false, //If true, the snippet short description is shown available when available.
		linktarget: '_blank' //Specifies the target for feed links ('_blank', '_self', '_top', framename).
	});
});

