$(function(){
	$('div#wrapper a img').hover(function(){
		$(this).fadeTo(10, 0.6);
	},function(){
		$(this).fadeTo(300, 1.0);
	});
	
	
	$('dl.history dd p').hide();
	$('dl.history dt').toggle(function(){
		$(this).next('dd').children('p').animate({height:'toggle'}, 100)
	},
	function(){
		$(this).next('dd').children('p').animate({height:'toggle'}, 100)
	});
		
	
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') &&　location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var sclpos = 30;
				var scldurat = 1200;
				var targetOffset = target.offset().top - sclpos;
				$('html,body')
					.animate({scrollTop: targetOffset}, 'easeOutCubic');
				return false;
			}
		}
	});
});
