
if ((navigator.appVersion.indexOf("Mobile") != (-1) 
    || navigator.appVersion.indexOf("blackberry") != (-1))
    && navigator.userAgent.indexOf('iPad') == -1)  // not on iPad
{
  // We're on a mobile device

  var _ENRredirectCookieName = "ENRredirectCookie";

  if (window.location.href.toLowerCase().indexOf("?mobile=0") != -1) {
    // Clicked on "Full Site" link on mobile
    // Set "Full" cookie to expire after 1 day (at midnight) on mobile device
    setCookieWithPath(_ENRredirectCookieName, "Full", 1, true);
  }
  
  var _cookieValue = getCookie(_ENRredirectCookieName);
  if (_cookieValue.indexOf("Full") != -1) {
    // Going to the full site on mobile device.
    // Add "Mobile" link that resets the cookie.
    $(function () {
      if ($("#footerlinks .mobile").length == 0) {
        $("#footerlinks > ul > li:first").before('<li><a class="mobile" href="/SitePages/mobile.aspx">Mobile</a>|</li>');
        $("#footerlinks .mobile").click(function () {
          setCookieWithPath(_ENRredirectCookieName, "mobile");
        });
      }
    });

  } else {
    // Redirect to mobile site
    top.location.href = "/SitePages/mobile.aspx";
  }

}


