jQuery(function($){
  options = {
      reject: { // Rejection flags for specific browsers
          all: false, // Covers Everything (Nothing blocked)
          firefox: false, firefox1: true, firefox2: true,
          konqueror: false, konqueror1: true,
          chrome: false,
          safari: false, safari2: true,
          opera:false, opera7: true, opera8: true, opera9: true,
          msie:false, msie5: true, msie6: true, msie7: true
      },
      display: ['firefox','safari','chrome','opera','msie','gcf'], // What browsers to display and their order
      browserInfo: { // Settings for which browsers to display
          firefox: {
              text: 'Firefox 3.6+', // Text below the icon
              url: 'http://www.mozilla.com/firefox/' // URL For icon/text link
          },
          safari: {
              text: 'Safari 3+',
              url: 'http://www.apple.com/safari/download/'
          },
          opera: {
              text: 'Opera 10+',
              url: 'http://www.opera.com/download/'
          },
          chrome: {
              text: 'Chrome 9+',
              url: 'http://www.google.com/chrome/'
          },
          msie: {
              text: 'Internet Explorer 8+',
              url: 'http://www.microsoft.com/windows/Internet-explorer/default.aspx'
          },
          gcf: {
              text: 'Google Chrome Frame',
              url: 'http://code.google.com/chrome/chromeframe/',
              allow: { all: false, msie: true } // This browser option will only be displayed for MSIE
          }
      },
      header: '', // Header of pop-up window
      paragraph1: 'Your browser is outdated. Some part of this website may not work well with this browser. Please upgrade to a more modern browser:', // Paragraph 1
      paragraph2: '', // Paragraph 2
      close: true, // AjReject - jQuery Plugin for Simple Browser Rejectionllow closing of window
      closeMessage: '', // Message displayed below closing link
      closeLink: 'Close This Window', // Text for closing link
      closeURL: '#', // Close URL (Defaults '#')
      closeESC: true, // Allow closing of window with esc key
      closeCookie: true, // If cookies should be used to remmember if the window was closed (applies to current session only)
      imagePath: '/public/images/', // Path where images are located
      overlayBgColor: '#000', // Background color for overlay
      overlayOpacity: 0.8, // Background transparency (0-1)
      fadeOutTime: 'fast' // Fade out time on close ('slow','medium','fast' or integer in ms)
  };
  $.reject(options); // Customized Browsers
});

