var deviceAgent = navigator.userAgent.toLowerCase();
var isMobile = deviceAgent.match(/(iphone|ipod|android)/);

if(getParam('m')!=0)
{
	if(isMobile)
	{
		window.location = "http://www.madeinhaus.com/mobile/";
	}
}

function getParam(name) {
    return decodeURI(
        (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search)||[,null])[1]
    );
}
