/*
 * newsticker.js 0.9
 * Copyright (c) 2007 C.M.A. Co.,Ltd.
 *
 * Last Added: 2007-01-15
 *
 */

$(function(){

	//コンサート情報欄
	var tickerLen = $('#newsticker li').length;
	$('#newsticker li').each(function(){
		this.liWidth = $(this).width();
		$(this).css('left',560);
	});
	$.newsticker = function(len){
		if(len > tickerLen-1)len=0;
		$('#newsticker li:eq('+len+')').each(function(){
			$(this).css('left',560).animate({left:560},{duration:1000,easing:'linear'})
				.animate({left:0},{duration:1000,easing:'easeOutExpo'})
				.animate({left:0},{duration:3000,easing:'linear'})
				.animate({left:-this.liWidth},{duration:1000,easing:'easeInExpo',complete:function(){$.newsticker(++len)}});
		});
	}
	$.newsticker(0);

});
