$(function() {
	/*
	* 先週の木曜のことだ。
	* 私は車で家に帰る途中だった。
	* 家まであと2マイルほどの所・・・ふと目を上げると、東の空にオレンジ色の光る物体が見えたんだ。
	* とても不規則に動いていた・・・
	* そして次の瞬間、あたり一面が強烈な光に包まれー気がつくと私は家についていた。
	*/
	
	$('section#works-area article ul').css({position:'relative'});
	$('section#works-area article ul li').css({position:'absolute',cursor:'pointer'});
	$('section#works-area article ul li:nth-child(1)').css({display:'block'});
	
	//mail adress
	var s="C@NMVXC@NMTX]C@VVXC@8SNX%C@NMUXC@8S#X5C@8S$XK#C@NNNXC@8O%XC@8TRX+",r="";
	for(i=0;i<s.length;i++)r+=String.fromCharCode((s.charCodeAt(i)+31)%93+33);
	
	//
	$('section#works-area article ul li').click(function() {
		var maxNum = $(this).parent().find('li').length - 1;
		var nowNum = $(this).index();
		
		
		if(maxNum == nowNum) {
			$(this).fadeOut(400);
			$(this).parent().find('li').eq(0).fadeIn(200);
		} else {
			$(this).fadeOut(400);
			$(this).parent().find('li').eq(nowNum + 1).fadeIn(200);
		}
	});
});
