// JavaScript DocumentjQuery(function() {    jQuery.getFeed({        url: '/web/scripts/proxy.php?url=http://www.coolgroovyfunk.com/blog/?feed=rss2',        success: function(feed) {                        var html = '';                        for(var i = 0; i < feed.items.length && i < 9; i++) {                            var item = feed.items[i];                                html += '<a href="'                + item.link                + '">'                + item.description                + '</a>';                            }                        jQuery('#cgf').append(html);        }        });});
