/* 文字コード：UTF-8 */
top_news_init = function(tgt, feed_uri, limit){
	new feedreader(function(items){
		var html = '';
		var count = items.length;
		if(count > 0){
			html = '<table>';
			for(var i = 0; i < count; i++){
				var item = items[i];
				html += '<tr>';
				if(item.image){
					html += '<td><a href="' + item.link + '"><img src="' + item.image + '" border="0" width="52" alt="" /></a></td><td>';
				}
				else{
					html += '<td colspan="2">';
				}
				html += '<a href="' + item.link + '">' + item.title + '</a> <span class="date">(' + item.date_str + ')</span></td>';
				html += '</tr>';
			}
			html += '</table>';
		}
		return html;
	}).init(tgt, feed_uri, limit, '_self');
}

$(document).ready(function(){
	if($('div#content div#top_pickup').length > 0){
		pickup_init('div#content div#top_pickup', 400);
	}
	if($('div#content div#content_business').length > 0){
		top_news_init('content_business', '/business/feed.xml', 10);
	}
	if($('div#content div#content_artist').length > 0){
		top_news_init('content_artist', '/artist/feed.xml', 10);
	}
	if($('div#content div#content_others').length > 0){
		top_news_init('content_others', '/others/feed.xml', 5);
	}
	if($('div#content div#photonews').length > 0){
		photo_news_init('div#photonews');
	}
	if($('div#content div#ranking').length > 0){
		ranking_init('ranking', 'content');
	}
});



/*--LAST UPDATE--*/
function last_up(upyear,upmonth,upday,uphour,upmin){
if(upmonth<10){upmonth="0"+upmonth;}
if(upday<10){upday="0"+upday;}
if(uphour<10){uphour="0"+uphour;}
if(upmin<10){upmin="0"+upmin;}
last_update = '<strong>● LAST UPDATE： '+upyear+'年'+upmonth+'月'+upday+'日 '+uphour+'時'+upmin+'分</strong>';
document.write(last_update);
}
/*--/LAST UPDATE--*/
