// JavaScript Document

<!--index-->
$(document).ready(function(){

	$(".fade img").hover(function(){ 
		$(this).fadeTo(200,0.5); 
	},function() {
		$(this).fadeTo(200,1); 
	});
	

	$(".fade img a").click(function(){
		var src = $(this).attr("href");
		$("#target").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});
});

<!--index-->
$(document).ready(function(){

	$(".fade2 img").hover(function(){ 
		$(this).fadeTo(200,0.5); 
	},function() {
		$(this).fadeTo(200,1); 
	});
	

	$(".fade2 img a").click(function(){
		var src = $(this).attr("href");
		$("#target").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});
});


<!--index02-->
$(document).ready(function(){

	$(".fade02 img").hover(function(){ 
		$(this).fadeTo(200,0.5); 
	},function() {
		$(this).fadeTo(200,1); 
	});
	

	$(".fade02 img a").click(function(){
		var src = $(this).attr("href");
		$("#target").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});
});



<!--gallery-->
$(document).ready(function(){
	//ナビゲーションｖkouseover。峨EE苡它ム凍・寢Wｔ・B
	$(".gallery img").hover(function(){ 
		$(this).fadeTo(200,0.5); 
	},function() {
		$(this).fadeTo(200,1); 
	});
	
	//峨EE苡它・A#targetｖ隊鋲EEXE・B
	$(".gallery img a").click(function(){
		var src = $(this).attr("href");
		$("#target").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});
});


<!--links-->
$(document).ready(function(){
	//ナビゲーションｖkouseover。峨EE苡它ム凍・寢Wｔ・B
	$(".links img").hover(function(){ 
		$(this).fadeTo(200,0.5); 
	},function() {
		$(this).fadeTo(200,1); 
	});
	
	//峨EE苡它・A#targetｖ隊鋲EEXE・B
	$(".links img a").click(function(){
		var src = $(this).attr("href");
		$("#target").fadeOut("slow",function() {
			$(this).attr("src",src);
			$(this).fadeIn();
		});
		return false;
	});
});




