$(function(){	$('body').show()	// top	$('.top .column_left').hide()	$('.top .column_right img').hide().each(function(i, _this){		var t = setTimeout(function(){			$(_this).fadeIn(500);			clearTimeout(t);						if(i==8){				$('.column_left').fadeIn(500);			}		}, 200*i)	})	$('.top .column_right map').hover(function(){		var _this = $("#"+this.name);		_this.animate({opacity: 0.8},200).attr("src", _this.attr("src").replace('_off','_on'));	}, function(){		var _this = $("#"+this.name);		_this.animate({opacity: 1},200).attr("src", _this.attr("src").replace('_on','_off'));	});		//others		$('.cont .column_left').hide().fadeIn(1000);	$('.cont .column_right').hide();	var ct = setTimeout(function(){		$('.cont .column_right').fadeIn(1000);		clearTimeout(ct);	}, 500)				$('.navi li img, .counter span img').hover(function(){		$(this).animate({opacity: 1},100)	}, function(){		$(this).animate({opacity: 0.3},100)	}).animate({opacity: 0.3},10);		$('.contentbody img').each(function(){		if(this.width > 580){			$(this).css({				width:570,				height:Math.round(this.height*(570/this.width))			})		}	})					// all #	$('.contentbody a[href^=#]:not([href=#])').click(function(){		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {			var _top = $('.contentbody').offset().top;			var _target = $('.contentbody a[name^='+this.hash.slice(1)+']').offset().top;			$('.contentbody').animate({scrollTop:'+='+ (_target - _top) +'px'}, 'slow');			return false;		}	});})