﻿$(document).ready(
  function () {
      $.reject({
          reject: {
              all: false,
              firefox1: true,
              firefox2: true,
              firefox3: true,
              chrome: false,
              safari1: true,
              safari2: true,
              safari3: true,
              msie5: true,
              msie6: true,
              msie7: false
          },
          display: ['firefox','chrome','msie','safari','opera'], // What browsers to display and their order  
    browserInfo: { // Settings for which browsers to display  
        firefox: {  
            text: 'Firefox 4', // Text below the icon  
            url: 'http://www.mozilla.com/firefox/' // URL For icon/text link  
        },  
        safari: {  
            text: 'Safari 4',  
            url: 'http://www.apple.com/safari/download/'  
        },  
        opera: {  
            text: 'Opera 10.5',  
            url: 'http://www.opera.com/download/'  
        },  
        chrome: {  
            text: 'Chrome 5',  
            url: 'http://www.google.com/chrome/'  
        },  
        msie: {  
            text: 'Internet Explorer 8',  
            url: 'http://windows.microsoft.com/en-US/internet-explorer/downloads/ie-8'  
        }
    },  
          imagePath: '/images/plugins/unsupportedBrowsers/',
          header: 'Did you know that your Internet Browser is out of date?', // Header of pop-up window  
          paragraph1: 'Your browser is out of date, and is not compatable with our website and our EPIC platform. Also, an out of date browser can potentially leave you open to security risks.  A list of the browsers and versions that we support are listed below.  If downloading Internet Explorer, IE8 is recommended.  ', // Paragraph 1  
          paragraph2: 'Just click on the icons to get to the download page', // Paragraph 2 
          closeMessage: 'By closing this window you acknowledge that your experience on this website may be degraded due to the version of your web browser', // Message displayed below closing link   
          closeESC: true, // Allow closing of window with esc key  
          closeCookie: true, // If cookies should be used to remmember if the window was closed (see cookieSettings for more options)  
          // Cookie settings are only used if closeCookie is true  
          cookieSettings: {  
              path: '/', // Path for the cookie to be saved on (should be root domain in most cases)  
              expires: 0 // Expiration Date (in seconds), 0 (default) means it ends with the current session  
          }
      });

      return false;
  }
);
