var mobiles=["iphone","ipod","nokia","symbian","blackberry","samsung",
             "sonyericsson","opera mini","iemobile","mobilesafari",
             "mobile safari","windows ce","android","opera mobi","palm",
             "up.browser","portalmmm","240x320","vodafone","htc_","htc-",
             "htc ","webos/","/midp"," midp","midp-","lg-","lge-","lg-",
             "lg/"," mda ","mda_","mot-","nec-","sec-"," sda ","sda/",
             "sgh-","sie-","xda ","xda_","alcatel","benq","ericsson",
             "motorola","panasonic","philips","sagem","samsung","sharp","mozilla/5.0 (dag;"];

var param = "?r=1";

function isMobile(userAgent) {
	try {
		var ua = userAgent.toLowerCase();
		var size = mobiles.length;
		
		for (var i=0; i < size; i++) {
			if (ua.indexOf(mobiles[i]) != -1) {
				return true;
			}
		}
	}
	catch (e) {	}
	
	return false;
}

function redirMobile(url) {
	try {
		if ((isMobile(navigator.userAgent)) && ((document.location == "http://www.daimler.com") || (document.location == "http://www.daimler.com/") || (document.location == "http://www.daimler.com/dccom/de") || (document.location == "http://www.daimler.com/dccom/de/") || (document.location == "http://www.daimler.com/dccom_de") || (document.location == "http://www.daimler.com/dccom_de/") || (document.location == "http://www.daimler.com/dccom_en") || (document.location == "http://www.daimler.com/dccom_en/"))) {
			if (document.location.href.indexOf("#desktop") != -1) {
				return; // don't redirect for desktop browser
			}
			document.location.href = url + param;
		}
	}
	catch (e) {	}
}
redirMobile("http://www.daimler.mobi");
