var deviceList = /(nokia|iphone|android|motorola|^mot\-|softbank|foma|docomo|kddi|up\.browser|up\.link|htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam\-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte\-|longcos|pantech|gionee|^sie\-|portalmmm|jig\s browser|hiptop|^ucweb|^benq|haier|^lct|opera\s*mobi|opera\*mini|320x320|240x320|176x220)/i;
 
//Initialize our user agent string to lower case.
var userAgent = navigator.userAgent.toLowerCase();
 
//**************************
// Detects if the current device is an Mobile.
function detectMobileBrowser()
{
    if (userAgent.match(deviceList) != null)
        return true;
   else
       return false;
}



function isIpad(){
	if(navigator.userAgent.match(/iPad/i) != null){
		return true;
	}else{
		return false;
	}
}

if(detectMobileBrowser() || isIpad()){
	location.href='http://www.albertasalotti.com/mobile/';
}
