$(function(){
	
	$('.slider').mobilyslider({
		transition: 'fade',
		content: '.sliderContent',
		children: 'div', //スライド要素
		orientation: 'horizontal', //スライド方向horizontal or vertical
		animationSpeed: 500, //切替速度
		autoplay: true, //自動再生
		autoplaySpeed: 8000, //自動再生速度
		pauseOnHover: true, //マウスオーバーで止める
		bullets: true, //ナビ表示
		arrows: true, //矢印表示
		prev: 'prev', //前へのclass
		next: 'next', //次へのclass
		animationStart: function(){},
		animationComplete: function(){}
	});
	
});

