$(document).ready( function(){
	$(".top-normal-banner a img").bind('mouseover focus', function() {
		$(this).stop(true, false).animate({
			opacity: 0.7
		}, 200, 'swing', false);
	}).bind('mouseout blur', function() {
		$(this).stop(true, false).animate({
			opacity: 1
		}, 200, 'swing', false);
	});

	$("#kanrensite a img").bind('mouseover focus', function() {
		$(this).stop(true, false).animate({
			opacity: 0.7
		}, 200, 'swing', false);
	}).bind('mouseout blur', function() {
		$(this).stop(true, false).animate({
			opacity: 1
		}, 200, 'swing', false);
	});
});

