﻿/* -------------------------------------------

	* ua が iPhone/Android/BlackBerry の時
	* 対象ページへリダイレクト
	
------------------------------------------- */
function sPhoneReplace(){
	var ua = navigator.userAgent;
	var ref = document.referrer;
	
	if (ref.match(/sp/)) { // /sp/以下からの遷移の場合、そのまま
		return false
	} else if(ua.search(/iPhone/) != -1 || ua.search(/iPod/) != -1) {
		location.href="sp/index.html";
	} else if(ua.search(/Android/) != -1 && ua.search(/Mobile/) != -1) {
		location.href="sp/index.html";
	} else if(ua.search(/BlackBerry/) != -1 ) {
		location.href="sp/index.html";
	}
}

sPhoneReplace();
