$(function(){

	$('#nonislider')
	.anythingSlider({
		resizeContents      : false,
		resumeOnVideoEnd : true,
		startText		      : ">>",
		stopText		      : "■",
		delay             	      :10000,
		animationTime         : 1000,
		resumeOnVideoEnd : true,
		navigationFormatter : function(i, panel){
			return ['タヒチアンノニCM', 'タヒチアンノニジュース&trade;', 'ディファイ', '７つの理由'][i - 1];
		}
	})
	.anythingSliderFx({
		// base FX definitions [ 効果の種類, サイズ, 動作時間, 停止時の動作 ]
		// '.selector' : [ 'effect(s)', 'distance/size', 'time', 'easing' ] - 'time' and 'easing' are optional parameters
		// for more precise control, use the "in" and "out" definitions
		// in = the animation that occurs when you slide "in" to a panel
		//,inFx  : {
		'.fade' : [ 'fade' ],
		//}
		// out = the animation that occurs when you slide "out" of a panel
		// (it also occurs before the "in" animation) - outFx animation time is 1/2 of inFx time
		//,outFx : {
		//'.fade' : [ 'fade' ]
		//}
	});
});

