			$(document).ready(function(){
				$(".colorbox").colorbox();
			});
function initRSSFeed(){
    jQuery.getFeed({url:'http://www.liblo.net/topics/?feed=rss2&cat=3',success:onComplete});
    function onComplete(feed) {
        var temp = 'お知らせ<p>';
        for(var i = 0; i < feed.items.length; i++) {
            var item = feed.items[i];


            temp += '<a href="' + item.link + '">' + item.title + '</a>';


        }
        temp += '</p>';
        jQuery('#info').append(temp);
    }
}

