This example uses the Cufon plugin to change the header font of each feed entry to Old English Text.
$(document).ready(function () {
$('#test').rssfeed('http://feeds.reuters.com/reuters/oddlyEnoughNews', {
limit: 5
},function() {
Cufon.replace('.rssRow h4');
});
});