// JavaScript Document
var news = new Array(
	'2010/04/01 ホームページが新しくなりました'
);
$(document).ready(function(){
	jQuery.each(news, function(){
		$('ul#newsticker').append('<li>'+this+'</li>');
	});
	$('ul#newsticker').innerfade({
		animationtype: 'slide',
		speed: 1000,
		timeout: 3500,
		containerheight: '1em'
	});
});
