$(document).ready(function() {

	//index
	$('#features').jshowoff({ 
		speed:5500,　//最初4500 表示時間
		changeSpeed:1000, //遷移時間
		controls:false //コントローラを表示するか
	});

	//PrettyPhoto
	//$("a[rel^='prettyPhoto']").prettyPhoto();
	$('a[href$=.jpg], a[href$=.jpeg], a[href$=.JPG], a[href$=.gif], a[href$=.png]').prettyPhoto();
	
	//サンプルギャラリーの列で3の倍数に特定のclassをつける
	$("#sample li:nth-child(3n)").each(function() {
		$(this).addClass("row3");
		$(this).after('<br clear="all" />');
	});
	
	//サンプルギャラリーのliのimg(mark)にcssをつける
	$("#sample li a img:nth-child(2)").each(function() {
		$(this).css('padding-right','5px');
	});


	//hover
	$('a img').hover(function() {
		$(this).stop(true, false).animate({ opacity: .5}, { duration: 200});
	}, function() {
		$(this).stop(true, false).animate({ opacity: 1 }, { duration: 200 });
	});


});
