$(document).ready(function(){  
	$.reject({  
		reject: { all: false, msie: true }, 
		display: ['safari','chrome','firefox'],
		
		header: 'Your Web Browser is not fully compatible with this website?', // Header of pop-up window  
		paragraph1: 'Please switch to one of the below web browsers because they adhere to modern day web standards and support the latest internet technologies that will drastically improve your experience on the internet. Additional benefits include: increased security, faster page loading and the ability to display websites the way they were intended. ',
		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 will be degraded', // 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: '/images/ie_reject/', // Path where images are located  
		overlayBgColor: '#000', // Background color for overlay  
		overlayOpacity: 0.7, // Background transparency (0-1)  
		fadeOutTime: 'medium' // Fade out time on close ('slow','medium','fast' or integer in ms)
	});  

	return false;  
	
});  
