$(function(){
	
	$('.slider').mobilyslider({
		content: '.sliderContent',
		children: 'div', //スライド要素
		transition: 'horizontal', //スライド方向horizontal or vertical
		animationSpeed: 300, //切替速度（画像のスライドするスピード）
		autoplay: true, //自動再生
		autoplaySpeed: 6000, //自動再生速度（イメージが止まる時間）
		pauseOnHover: true, //マウスオーバーで止める
		bullets: true, //ナビ表示
		arrows: true, //矢印表示
		arrowsHide: true,
		prev: 'prev', //前へのclass
		next: 'next', //次へのclass
		animationStart: function(){},
		animationComplete: function(){}
	});
	
});

