

/* サムネイル画像の拡大表示 */

$(function(){		
	$('.smallPicList img').click(function(){
	
		//クリックした親要素のulのidから数字のみを取得
		var picNum = eval($(this).closest('ul').attr('id').replace('childPic',''));

		//クリックした画像のファイル名に"_L"をつけてparentPicに表示
		$('#parentPic' + picNum).attr('src',$(this).attr('src').replace(/^(.+)(\.[a-z]+)$/, "$1_L$2"))
	}).each(function(){	//画像の先読み処理
		$('<img>').attr('src',$(this).attr('src'));
	});
});


/* 画像のマウスオーバーフェード */

$(function(){
	$('.fadePic').hover(function(){
		$(this).stop().fadeTo(300,0.7);
	},function(){
		$(this).stop().fadeTo(300,1);
	});
});
