	jQuery(function() {
		jQuery.getFeed({
			  url: 'scripts/php/proxy.php?url=http://blog.indigo-socks.com/?mode=rss'
			, success: function(feed) {
				jQuery('#team > .inBox > dl').append('');
				var html = '';
				for(var i = 0; i < feed.items.length && i < 7; i++) {
					var item = feed.items[i];
					var date = item.dcdate.split('T')[0].split('-');
					html += '<dt>' + date[0] + "/" + date[1] + "/" + date[2] + '</dt>';
					html += '<dd><a href="' + item.link + '" target="_blank">' + item.title + '</a></dd>';
				}
				jQuery('#team > .inBox > dl').append(html);

				// ---- 2011.06.03 Add Kawaguchi
				class_heightLineNews_Adjust();		// 左右の高さを揃える
			}
		});
	});


	// ---- 左右の高さを揃える
	function class_heightLineNews_Adjust() {
		if ( jQuery(".heightLineNews").attr("class") && jQuery("#league").attr("id") ) {
			var height = 0;
			jQuery(".heightLineNews").each( function(i) {
				var dummy = parseInt( jQuery(this).height() );
				if ( dummy > height ) { height = dummy; }
			});

			if ( height > 0 ) { jQuery(".heightLineNews").height(height); }
		}
	}



