var useragent;
var mobile 		= false;
var android 	= false;
var iphone 		= false;
var ipad 		= false;
var wind 		= false;

function detectBrowser() {
	useragent 		= navigator.userAgent;
	mobile 			= ((useragent.indexOf('iPhone') != -1) || (useragent.indexOf('Android') != -1) ) ? true : false;
	if(useragent.indexOf('iPhone') != -1) 
		iphone 			= true;
	if(useragent.indexOf('iPad') != -1) 
		ipad 			= true;
	if(useragent.indexOf('Android') != -1) 
		android 		= true;
	if(useragent.indexOf('Windows Phone') != -1) 
		wind 			= true;
	
	if(mobile || iphone || ipad || android || wind) {
		var redirect_path 		= '';
		var path				= window.location.pathname.toLowerCase().replace('/', '');
	
		// Check for these paths to redirect to the specific mobile page:
		// 
		// tournaments
		// games
		// promotions
		// mobile-alerts
		// 
	
		if(path == 'tournaments/' || path == 'games/' || path == 'promotions/' || path == 'mobile-alerts/') {
			redirect_path = path;
		}
		
		window.location.assign('http://mobile.thegardenscasino.com/' + redirect_path);
	}
}

detectBrowser();
