$(function() {
	//TOPPage
	$("a.hover img").hover(
		function(){   // マウスオーバー
		$(this).fadeTo(1, 0.7);
		},
		function(){   // マウスアウト
		$(this).fadeTo(1, 1);
		}
	);
	$(".smenu a img").hover(
		function(){   // マウスオーバー
		$(this).fadeTo(1, 0.7);
		},
		function(){   // マウスアウト
		$(this).fadeTo(1, 1);
		}
	);
	$(".top_makesure a img").hover(
		function(){   // マウスオーバー
		$(this).fadeTo(1, 0.7);
		},
		function(){   // マウスアウト
		$(this).fadeTo(1, 1);
		}
	);
	$("#rightArea dl dt a img").hover(
		function(){   // マウスオーバー
		$(this).fadeTo(1, 0.7);
		},
		function(){   // マウスアウト
		$(this).fadeTo(1, 1);
		}
	);
	
	
	
	//
	$(".higasiasia li a img").hover(
		function(){   // マウスオーバー
		$(this).fadeTo(1, 0.7);
		},
		function(){   // マウスアウト
		$(this).fadeTo(1, 1);
		}
	);
	
	
});


