$(document).ready(function(){
	$(function() { 
		$("#header ul a, #header h4 a, #gnavi a, ul.grw li a, #left ul a, #right ul a, .pagetop a, #footer h4 a, .wnew p a, .mw li a, .mapprint a, .mapprint2 a, .loan a").hover(
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".gallery a img, .pban a img").hover(
			function () {
				$(this).stop().animate({opacity: 0.6}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 1}, 'fast');}
		);
		$(".current a").css("opacity","0");
		$(".current a").hover(
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');},
			function () {
				$(this).stop().animate({opacity: 0}, 'fast');}
		);
	});
});
