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.85',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 8000
			})
			.appendTo("body");
		$("<div><img src='http://i34.tinypic.com/osziub.png' alt='Ie6' style='float: left;'/><p><br /><strong>Sorry! IATT v3.0 doesn't support Internet Explorer 6.</strong><br /><br />If you'd like to read our content please <a href='http://www.microsoft.com/windows/Internet-explorer/default.aspx'>upgrade your browser</a> or <a href='http://www.mozilla.com/en-US/firefox/personal.html'>get Firefox</a>.</p>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -250,
				width: 410,
				paddingRight: 10,
				height: 200,
				'position': 'absolute',
				zIndex: 9000
			})
			.appendTo("body");
	});		
}