
$(document).ready(function() {

// jQuery Reject - No IE5/IE6/IE7
    $.reject({  
        reject: { msie5: true, msie6: true, msie7: true }, // Reject all renderers for demo  
		display: ['msie','firefox','safari','chrome','gcf'], // What browsers to display and their order
browserInfo: { // Settings for which browsers to display  
	msie: {  
	    text: 'IE 8',  
	    url: 'http://www.microsoft.com/windows/Internet-explorer/'  
	},  
    firefox: {  
        text: 'Firefox 3.5+', // Text below the icon  
        url: 'http://www.mozilla.com/firefox/' // URL For icon/text link  
    },  
    safari: {  
        text: 'Safari 5',  
        url: 'http://www.apple.com/safari/download/'  
    },  
    chrome: {  
        text: 'Chrome 5',  
        url: 'http://www.google.com/chrome/'  
    },  
    gcf: {  
        text: 'Chrome Frame',  
        url: 'http://code.google.com/chrome/chromeframe/',  
        allow: { all: false, msie: true } // This browser option will only be displayed for MSIE  
}
},	
        header: 'Did you know your Internet Browser is out of date?', // Header of pop-up window  
    	paragraph1: 'Your browser is out of date, and may not be fully compatible with our website. A list of the most popular web browsers can be found below.', // Paragraph 1  
		paragraph2: 'Just click on the links below to get to the download page', // Paragraph 2  
		imagePath: '/images/css/browsers/', // Path where images are located  
    	overlayBgColor: '#000000', // Background color for overlay
        closeCookie: true // Set cookie to remmember close for this session  
    });  

    return false;  
});
