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

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.95',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><span style='font-size: .85em;'><br /><strong>We are sorry, but Advance Media Online <br />does not support Internet Explorer 6.</strong><br /><br />Due to the vast amounts of security flaws and the extreme difficulty of designing a website specifically for Internet Explorer 6, we have abandoned support for the browser on our website.<br /><br />We recommend upgrading your browser to the <a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx'>newest version of Internet Explorer</a>, downloading <a href='http://www.mozilla.com/en-US/firefox/'>Mozilla Firefox</a> or <a href='http://www.google.com/chrome'>Google Chrome</a>.<br /><br />We apologize for the inconvenience!</span>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -300,
				marginTop: -230,
				width: 550,
				paddingRight: 10,
				height: 225,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
