var IE = (navigator.userAgent.indexOf("MSIE")>=0) ? true : false;
if(IE){

	$(function(){
		
		$("<div id='overlay'>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div id='ieMessage'><img src='images/no-ie6.png' alt='' style='float: left;'/><p><br /><strong>Sorry! This page doesn't technically support any version of Internet Explorer.</strong><br /><br />If you'd like to see the content please upgrade your browser to any of the following: <a href='http://getfirefox.org' target='_blank'>Firefox</a>, <a href='https://www.google.com/chrome' target='_blank'>Chrome</a>, or <a href='http://www.apple.com/safari/' target='_blank'>Safari</a>. If you'd like to view the site in your current browser, click outside this box. However I cannot guarantee what you will see. Thank you!</p>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -250,
				marginTop: -100,
				width: 500,
				paddingRight: 10,
				paddingLeft: 10,
				height: 230,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
