
///▼▼▼ HOT NEWS ▼▼▼//

var hot_id = 0

function first_hotnews()
{
	document.getElementById('hot_tx').innerHTML = 'ライヴDVD＆Blu-ray「史上最強の移動遊園地 DREAMS COME TRUE WONDERLAND 2011」3月21日発売決定！！';
}

function hotnews_timer()
{
	if(hot_id == 0){
		document.getElementById('hot_tx').innerHTML = 'DREAMS COME TRUE 5月に約1年半ぶりとなるニューシングルの発売が決定！！';
		hot_id += 1;
	}else if(hot_id == 1){
		document.getElementById('hot_tx').innerHTML = '5月13日・20日開催「yorimo presents みんなで金環食する？LIVE 2012 〜CREATE THE FUTURE〜」出演決定！！';
		hot_id += 1;
	}else if(hot_id == 2){
		document.getElementById('hot_tx').innerHTML = 'DREAMS COME TRUE 今秋、ファンとつながる「裏ドリカムワンダーランド2012/2013」の開催が決定！！';
		hot_id += 1;
	}else if(hot_id == 3){
	　　document.getElementById('hot_tx').innerHTML = 'DREAMS COME TRUE 楽曲「時間旅行」で歌われた「太陽の指輪（リング）」の発売が決定！！';
		hot_id += 1;
	}else if(hot_id == 4){
		first_hotnews();	
		hot_id += 1;	}
	
if( hot_id > 4) hot_id=0;

}


function hotnewsloop(){
tmp1 = setInterval('hotnews_timer()',5000);

}

///▲▲▲ HOT NEWS ▲▲▲///
