﻿if (screen.width < 600) {
  if ($.cookie('view') == null || $.cookie('view') == 0) {
    function confirmation() {
      var answer = confirm("View our mobile website?")
      if (answer) {
        var now = new Date();
        var expiresDate = new Date();
        expiresDate.setDate(now.getDate() + 10);
        $.cookie("view", 1, { expires: expiresDate });
        window.location = "http://www.austinfoodbank.org/m/";
      }
      else {
        $.cookie("view", 2, { expires: expiresDate });
      }
    }
    confirmation();
  }
  if ($.cookie('view') == 1) {
    window.location = "http://www.austinfoodbank.org/m/";
  }
}
