jQuery.event.add(window, "load", _setOrbit);

// メインビジュアルの切替
function _setOrbit(){
	jQuery('#mainSlide').orbit({

'bullets': true,
'animationSpeed': 250, //アニメーション速度
'timer' : true,//タイマー表示
'animation' : 'horizontal-push',
'directionalNav': true  //方向ナビ表示

	});


	jQuery('.orbit-wrapper').hover(
		function(){
			jQuery(this).find('.slider-nav').show();
		},
		function(){
			jQuery(this).find('.slider-nav').hide();
		}
	);

	jQuery('.slider-nav').hide();


/*
	jQuery('.orbit-wrapper').hover(
		function(){
			jQuery(this).find('.slider-nav, .orbit-bullets').show();
		},
		function(){
			jQuery(this).find('.slider-nav, .orbit-bullets').hide();
		}
	);

	jQuery('.slider-nav, .orbit-bullets').hide();
*/

}
