/* id="photo_cange" 以内で動作するように設定してあります。 */

$(document.getElementById('photo_cange')).ready(function(){
	//ナビゲーションのmouseover
	$("#photo_cange img").mouseover(function(){ 
		$(this).fadeTo(200,0.5); 
	});
	$("#photo_cange img").mouseout(function() {
		$(this).fadeTo(200,1); 
	});
	
	//画像切り替え、#targetの内容を変更する。
	//速度優先（フェードインアウトは外す）

	$("#photo_cange a").click(function(){
		var src = $(this).attr("href");
		//$("#target").fadeOut("slow",function(){
			$("#target").attr("src",src);
		//});
		
		//$("#target").ready(function(){
			$("#target").fadeIn("slow");
		//});
		return false;
	});
});

$(document.getElementById('photo_fade')).ready(function(){

	//ナビゲーションのmouseover
	$(".photo_fade img").mouseover(function(){ 
		$(this).fadeTo(200,0.6); 
	});
	$(".photo_fade img").mouseout(function() {
		$(this).fadeTo(200,1); 
	});
	

});
