(function findNavigator(){
	if (typeof navigator.userAgent !== "undefined"){
		if (navigator.userAgent.match(/iPad|iPhone|Android|BlackBerry|Nokia|SymbianOS/))
			window.location.href = '/mobile';
	}
})();

