function detectMobileDevice()
{

		var agentDetected = navigator.userAgent.toLowerCase();

		// Check - kein Tablet device we iPad etc.
		if (!(agentDetected.match(/(iPad|SCH-I800|xoom|kindle)/i))) 
		{
			
		// Check if the UA is a mobile one (iphone, ipod, android, blackberry)
		isMobileDevice =!!(agentDetected.match(/(iPhone|iPod|blackberry|android 0.5|htc|lg|midp|mmp|mobile|nokia|opera mini|palm|pocket|psp|sgh|smartphone|symbian|treo mini|Playstation Portable|SonyEricsson|Samsung|MobileExplorer|PalmSource|Benq|Windows Phone|Windows Mobile|IEMobile|Windows CE|Nintendo Wii)/i));
			
			
		if(isMobileDevice)
			return true;
		else
			return false;
			
		}


}
