


//===========================================================
// 初期動作
//===========================================================
$(function(){
		
	checkUA();
})



// スマーフォン用サイトに促す
//-----------------------------------------------------------
var navigateSmartPhonePage = function(){
	
	if( document.referrer.indexOf('sakotsu.jp') == -1){
	   if(confirm('スマートフォン用に最適化されたサイト（仮）に切り替えますか？')) {
          location.href = 'http://m.sakotsu.jp/';
       }
	}
}



// UserAgentをチェックして振り分ける
//-----------------------------------------------------------
var checkUA = function(){
	
	var ua = navigator.userAgent;
	if( (ua.indexOf('iPhone') > 0 && ua.indexOf('iPad') == -1) || ua.indexOf('iPod') > 0 ){
	   //[1] iPhone or iPod
	   navigateSmartPhonePage();
	}else if( ua.indexOf('iPad') > 0) {
       //[2] iPad
	}else if( ua.indexOf('Android') > 0 ){
	   if( ua.indexOf('Mobile') > 0 ){
		   //[3] Android Mobile
		   navigateSmartPhonePage();
	   }else{
		   //[4] Android Mobile
	   }
	}else{
		//[5] それ以外
	}
}

