jQuery(function() {    jQuery.getFeed({        url: 'js/proxy.php?url=http://news.nissyoku.co.jp/Rss20.aspx?c=01',        success: function(feed) {                    jQuery('#rssnews').append('<p style="font-size:77%">'            + '<a href="'            + feed.link            + '">'            + feed.title            + '</a>'            + '</p>');                        var html = '';                        for(var i = 0; i < feed.items.length && i < 3; i++) {                            var item = feed.items[i];                                html += '<p style="font-size:77%">'                + '<a href="'                + item.link                + '">'                + item.title                + '</a>'                + '</p>';                                html += '<div class="updated">'                + item.updated                + '</div>';                                html += '<div style="font-size:77%">'                + item.description                + '</div>';            }                        jQuery('#rssnews').append(html);        }        });});
