function isMobile() {
	return (
		( navigator.userAgent.indexOf( "iPhone" ) > -1 ) ||
		( navigator.userAgent.indexOf( "iPod" ) > -1 ) ||
		( navigator.userAgent.indexOf( "Android" ) > -1 ) ||
		( navigator.userAgent.indexOf( "webOS" ) > -1 ) ||
		( navigator.userAgent.indexOf( "BlackBerry" ) > -1 )
	);
}
if( isMobile() ) {
	window.location = "/mobile";
}

