$(function(){
	//ウィンク効果
	$('#head h2 img').hover(function(){
		$(this).css({
			opacity: '0.2',
			filter: 'alpha(opacity=10)'
		});
		$(this).fadeTo('slow',1.0);
	});

	
	$('#head h2 img').hover(function(){
		$(this).css({
			opacity: '1',
			filter: 'alpha(opacity=100)'
		});
	});
	
		$('#head h1 img').hover(function(){
		$(this).css({
			opacity: '0.2',
			filter: 'alpha(opacity=10)'
		});
		$(this).fadeTo('slow',1.0);
	});

	
	$('#head h1 img').hover(function(){
		$(this).css({
			opacity: '1',
			filter: 'alpha(opacity=100)'
		});
	});
	
	$('#left a img').hover(function(){
		$(this).css({
			opacity: '0.2',
			filter: 'alpha(opacity=10)'
		});
		$(this).fadeTo('slow',1.0);
	});

	
	$('#left a img').hover(function(){
		$(this).css({
			opacity: '1',
			filter: 'alpha(opacity=100)'
		});
	});
	
});

