//JQuery

$(function(){

	//ロールオーバ
	$('li img').hover(function(){
		$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
	},
	function(){
		if (!$(this).hasClass('currentPage')) {
			$(this).attr('src', $(this).attr('src').replace('_on', '_off'));
		}
	});

	$(".carousel").jCarouselLite({
		btnNext: ".next",
		btnPrev: ".prev",
		visible : 4,
		speed: 1000,
		easing: "linear",
		auto: 3000
	});

	$(".pagetop a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})

	$(".tlist a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})

	//ライトボックス
	$('.glist a').lightBox();

});

