// JavaScript Document

 

	var strUA = "";
	  strUA = navigator.userAgent.toLowerCase();
	if((strUA.indexOf("iphone") != -1) || (strUA.indexOf("ipad") != -1) || (strUA.indexOf("android") != -1) || (strUA.indexOf("DoCoMo") != -1) || (strUA.indexOf("ipod") != -1)){
		document.location = "mobile/index.html";
	}


	
