RegExp.escape = function(text) {
  if (!arguments.callee.sRE) {
    var specials = [
      '/', '.', '*', '+', '?', '|',
      '(', ')', '[', ']', '{', '}', '\\'
    ];
    arguments.callee.sRE = new RegExp(
      '(\\' + specials.join('|\\') + ')', 'g'
    );
  }
  return text.replace(arguments.callee.sRE, '\\$1');
}

//ipad inclusion || (navigator.userAgent.match(/iPad/i))

if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i)) || (navigator.userAgent.match(/BlackBerry/i)) || (navigator.userAgent.match(/Android/i)) || (navigator.userAgent.match(/webOS/i)) || (navigator.userAgent.match(/Opera Mobi/i)) || (navigator.userAgent.match(/Opera Mini/i)) || (navigator.userAgent.match(/Nokia/i)) || (navigator.userAgent.match(/SymbianOS/i)) || (navigator.userAgent.match(/Windows CE/i)) || (navigator.userAgent.match(/BenQ/i))) { 
	if (document.URL == "http://www.thurley.com.au/"){
		if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = "http://www.thurley.com.au/mobile/splash.aspx";
	}
	else
	{
		var re = RegExp.escape("http://www.thurley.com.au/mobile/");
		if (!document.URL.match(re)){
			var url = String(document.URL);
			var mobileURL = url.replace("http://www.thurley.com.au/", "http://www.thurley.com.au/mobile/");
			if (document.cookie.indexOf("iphone_redirect=false") == -1) window.location = mobileURL; 
		}
	}
}

