function checkifmobile (userAgent) {
	var mobiles = new Array("midp", "240x320", "blackberry", "netfront", "nokia", "panasonic", "portalmmm", "sharp", "sie-", "sonyericsson", "symbian", "windows ce", "benq", "mda", "mot-", "opera mini", "philips", "pocket pc", "sagem", "samsung", "sda", "sgh-", "vodafone", "xda");
	for (var i = 0; i < mobiles.length; i++) {
		useragent = userAgent.toLowerCase();
		if (useragent.indexOf(mobiles[i]) != -1 )
			window.location.href = "http://www.schiffundhafen.de/mobil/";
	}
}
checkifmobile(navigator.userAgent);
