// スライドショー
function slideSwitch() {
	var $active = $('#slideshow img.active');
	if ( $active.length == 0 ) $active = $('#slideshow img:last');
		var $next =  $active.next().length ? $active.next() : $('#slideshow img:first');
		$active.addClass('last-active');
		$next.css({opacity: 0.0})
		.addClass('active')
		.animate({opacity: 1.0}, 1000, function() {
		$active.removeClass('active last-active');
	});
}
$(function() {
	setInterval( "slideSwitch()", 4000 );
});

// マウスオーバー
$(function() {
	var $fade = $('img.fade');
	$fade.hover(function(){
		$(this).css({opacity: 0.7});
	},function(){
		$(this).css({opacity: 1.0});
	});
});

// スクロール
$(function(){
	$('a[href^=#]').click(function() {
		var speed = 400;// ミリ秒
		var href= $(this).attr("href");
		var target = $(href == "#" || href == "" ? 'html' : href);
		var position = target.offset().top;
		$($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
		return false;
   });
});
