var uastr = navigator.userAgent.toLowerCase();
//quick redirect from home page to mobile home page
if(document.cookie.indexOf('mjr_force_full=true') == -1 && (window.location.href == 'http://www.meijer.com/' || window.location.href == 'http://www.meijer.com/home.jsp') && (uastr.indexOf('iphone') > -1 || (uastr.indexOf('android') > -1 && uastr.indexOf('mobile') > -1) || uastr.indexOf('ipod') > -1 || uastr.indexOf('webos') > -1 || uastr.indexOf('windows ce') > -1 || uastr.indexOf('windows phone') > -1 || uastr.indexOf('silk-accelerated') > -1
)) {
	location.replace('http://www.meijer.com/assets/site/mobile/index.html');
}
