
//News HeadeLine
var hdAry = [];
var ac = 0;
var dc = null;

// xmlファイル読み込み
function getXML(){
	$.ajax({url:'headline.xml', type:'get', dataType:'xml', processData:false, timeout:1000, success:parseXML});
}
// xmlデータ解析
function parseXML(xml, status){
    if(status!='success'){return};
    $(xml).find('topix').each(hdInit);
	hdIn();
	hdTimer();
}
function hdInit(){
	var news_url = $(this).find('url').text();
	var news_date = $(this).attr('date');
	var news_body = $(this).find('body').text();
	hdAry.push($("<li></li>").html('<a href=' + news_url + '><span>' + news_date + '</span>' + news_body + '</a>').appendTo('ul[id=hdlist]'));
}
//フェードイン
function hdIn(){
	hdAry[ac].fadeIn(300);	
}
//フェードアウト
function hdOut(){
	dc = ac;
	ac++;
	if(ac >= hdAry.length){
		ac = 0;
	}
	hdAry[dc].fadeOut(300, hdIn);
}
//タイマー
function hdTimer(){
	var interval = 5000;
	setInterval(function(){
		hdOut();
	}, interval);
}