jQuery(function() {

    jQuery.getFeed({
        //url: 'proxy.php?url=http://buisconsultancy.nl/cats/rss/',
        url: '/cats-plugged/proxy.php?url=http://buisconsultancy.nl/cats/rss/',
        success: function(feed) {

            
            var html = '';
            
            for(var i = 0; i < feed.items.length && i < 5; i++) {
            
                var item = feed.items[i];
                
                html += '<li>'
                + '<a href="'
                + item.link
                + '">'
                + item.title
                + '</a>'
                + '</li>';

// pim, 20091005; aanpassing door Media Design
//                html += '<p">'
//                + item.updated
//                + '</p>';
                
                html += '<p>'
                + item.description
                //+ '<br /><a href="'
                //+ item.link
                //+ '">[Link]</a>'
                + '</p>';
            }
            
            jQuery('#result').append(html);
        }    
    });
});
