// JavaScript Document
// Mobile redirect

(function(a){jQuery.browser.mobile=/blackberry|ip(hone|od)|symbian|windows ce|windows phone/i.test(a)})(navigator.userAgent||navigator.vendor||window.opera);
	
if(jQuery.browser.mobile){
	window.location = '../mobile_page/index.shtml';
}

var ua = navigator.userAgent.toLowerCase(); 
var isAndroid = ua.indexOf("mobile") > -1;

if((isAndroid) && (ua.match(/android/i))) { 
	window.location = '../mobile_page/'; 
}
