function startTPNiceSlideShow() {
	var TPNiceSlideShow = new TPSlideShowClass($('TPNiceSlideShow'), {
		timed:true,                 //自動スクロールのON／OFF
		showInfopane:true,          //左画像の上のCaption表示
		showMenu:true,
		embedLinks:true,            //左画像のリンク
		fadeDuration:1000,
		readMore:true,              //Captionの「Read More」表示／非表示
		readMoreText:'Read More',   //Captionの「Read More」のテキスト表示／非表示
		showTitle:true,            //左画像のタイトル表示／非表示
		titleLink:true,            //左画像のタイトルにリンクON／OFF
		showDescription:true,      //左画像の説明文の表示／非表示
		scrollBar:true,            //スクロールバーの表示／非表示
		itemCount:10,               //画像の最大数
		scrollBarContent:$('TPNiceSlideShowMenuWrp'),
		scrollBarArea:$('tpniceslideshow_scrollbar'),
		scrollBarHandle:$('tpniceslideshow_handle'),
		delay:3000                 //画像切り替えの時間（1000=1秒）
	});
}
window.onDomReady(startTPNiceSlideShow);

