// **********************************
// right column present banner setting
// use
// jquery-1.3.2.min.js
// jquery.carrousel.js
// jquery.carrousel.effects.js
// jquery.carrousel.controls.js

$(document).ready(function(){
	jQuery("ul#presentlist").carrousel({
		speed : 2000, //切り替えスピード
		dispTimeout : 2000, //停止時間
		dispNumber	: 2, //表示数
		auto	 : true, //自動再生
		api	 : true, // コントローラーを付ける
		htmlPrevButton: "&lt;&lt;前へ",
		htmlNextButton: "次へ&gt;&gt;",
		direction: 'right'
	});
	
	jQuery('#next').click(function () { //次へ
	carrousel.next(); 
	});
	jQuery('#prev').click(function () { //前へ
	carrousel.prev(); 
	});
	jQuery('#start').click(function () { //開始
	carrousel.start(); 
	});
	jQuery('#stop').click(function () { //停止
	carrousel.stop(); 
	});
});

// **********************************

