$(function(){
	/*透過pngへのフェードはバグがあるため、指定しない*/
	$("a img,.fadeImg").hover(
		function(){
			$(this).fadeTo(200, 0.7);
		},
		function(){
			$(this).fadeTo(200, 1.0);
		}
	);
});

