//
//Sasaki News Headline
//

var news_value = [ {link:'./news/index.php?id=29',title:'2012/01/25　2011年　APAアワード2012'},{link:'./news/index.php?id=28',title:'2012/01/25　2011年　APAアワード2012'},{link:'./news/index.php?id=27',title:'2012/01/25　2011年　APAアワード2012'} ];

var pointer = -1;
var count   = 0;

function next_news(){
	setTimeout("headl_line()", 5000);
}

function headl_line(){

	if (count < 0){
		pointer = (pointer < news_value.length - 1)? pointer + 1 : 0;

		var target = document.getElementById('ticker');

		target.innerHTML = '<a href="'+ news_value[pointer].link +'" id="news_link">'+ news_value[pointer].title +'</a>';

		count = 110;

		next_news();
	}
	else{
		count -= 10;
		if (count <= 100){
			var opacity = ((count / 100) > 0.999) ? 0.999 : (count / 100);
			var news_link = document.getElementById('news_link');

			if (navigator.appName.indexOf("Microsoft Internet Explorer", 0)){
				news_link.style.KHTMLOpacity = opacity;
				news_link.style.MozOpacity = opacity;
				news_link.style.opacity = opacity;
			}
			else{
				news_link.style.zoom = 1;
				news_link.style.filter = 'alpha(opacity:'+ opacity * 100 +')';
			}
		}

		setTimeout("headl_line()", 50);
	}
}
