$(function(){	
	$.reject({
		reject : { // Rejection flags for specific browsers
	msie5: true,
	msie6: true,
	msie7: true,
	firefox1: true,
	firefox2: true,
	firefox3: true,
	opera: true,
	opera7: true,
	opera8: true,
	unknown: true
},
display: ['firefox','chrome','msie','safari','opera'], // What browsers to display and their order
browserInfo: { // Settings for which browsers to display
	firefox: {
		text: 'Firefox', // Text below the icon
		url: 'http://www.mozilla.com/firefox/' // URL For icon/text link
	},
	safari: {
		text: 'Safari',
		url: 'http://www.apple.com/safari/download/'
	},
	opera: {
		text: 'Opera',
		url: 'http://www.opera.com/download/'
	},
	chrome: {
		text: 'Chrome',
		url: 'http://www.google.com/chrome/'
	},
	msie: {
		text: 'Internet Explorer',
		url: 'http://www.microsoft.com/windows/Internet-explorer/'
	}
},
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 may not be compatible with our website. A list of the most popular web browsers can be found below.', // Paragraph 1
paragraph2: 'Just click on the icons to get to the download page', // Paragraph 2
close: true, // Allow closing of window
closeMessage: 'By closing this window you acknowledge that your experience on this website may be degraded', // Message displayed below closing link
closeLink: 'Close This Window', // Text for closing link
closeURL: '#', // Close URL
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
},
imagePath: 'images/browsers/', // Path where images are located
overlayBgColor: '#000', // Background color for overlay
overlayOpacity: 0.7, // Background transparency (0-1)
fadeInTime: 'fast', // Fade in time on open ('slow','medium','fast' or integer in ms)
fadeOutTime: 'fast' // Fade out time on close ('slow','medium','fast' or integer in ms)
	}); // Customized Browsers

	return false;

});
