$(document).ready(function(){
	$(function() { 
		$("#header p a img, .pagetop a img, .snavi a img, .ft_contact h4 a img, #gnavi a img, .ban a img").hover(
			function () {
				$(this).stop().animate({opacity: 0.6}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
	});
});
