//スライドギャラリー
$(function() {
	$("#tabs li a").prepend('<span class="border"></span>');
	$.featureList(
		$("#tabs li a"),
		$("#output li"), {
			start_item	:	0,
			transition_interval: 5000
		}
	);
});

//回転ギャラリー
$(function() {
	$('#roundBox li').focus(function() {
		var useText = $(this).children('a').attr('title');
		$('#roundBox #description').html(useText).fadeIn(200);
	}).blur(function() {
		$('#roundBox #description').fadeOut(100);
	});
});
$(function() {
	var interval;
	$('#roundBox ul').roundabout({
		shape: 'lazySusan',
		//easing: 'easeOutQuart',
		tilt: -4.4,
		minScale: 0.3,
		maxScale: 1.0,
		btnNext: '#roundBox #next',
		btnPrev: '#roundBox #prev'
	});
	$('#roundBox ul li').hover(
		function() {	clearInterval(interval);	},
		function() {	interval = roundAutoPlay();	}
	);
	$('#roundBox #next, #roundBox #prev').hover(
		function() {	clearInterval(interval);	},
		function() {	interval = roundAutoPlay();	}
	);
	interval = roundAutoPlay();
});
function roundAutoPlay() {
	return setInterval(function() {
		$('#roundBox ul').roundabout_animateToNextChild();
	}, 5000);
}

