$(document).ready(function() {  
    $.reject(
	     {
	     reject:{
		   msie: true, // Microsoft Internet Explorer  
		   unknown: true // Everything else  
		   },
                 closeCookie: true,
		 header: 'It appears your browser sucks.',
		 paragraph1: 'You are either using Microsoft Internet Explorer or an unrecognized browser.',
		 paragraph2: 'Internet Explorer is unsafe and slow. Additionally, it and some other minor ' +
                             'browsers do not support some of the new '+
		             'technologies in use on this site, such as CSS 3 and HTML 5. I recommend one ' +
		 'of the following browsers, for the best, fullest browsing experience',
		 closeMessage: 'You can close this warning and continue browsing, but you have been warned.',
		 display: ['firefox', 'chrome', 'safari']
		 }
	     ); 
    
    return false;  
  }
  );  
