This example shows scrolling feed which includes images using the vTicker plugin.
$(document).ready(function () {
$('#ticker1').rssfeed('http://feeds.bbc.co.uk/iplayer/highlights/tv/list',{
snippet: false
}, function(e) {
$(e).find('div.rssBody').vTicker({
showItems: 1
});
});
});