var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		
		$("<span>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.92',
				'width': '1024px',
				'height': '768px',
				'overflow': 'hidden',
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<span style='text-align:center;'><p><br /><strong>We're not sorry! This page doesn't support Internet Explorer 6.</strong><br /><br />If you want to view the site <a href='http://www.google.com/chrome/'>upgrade your browser</a>.</p></span>")
			.css({
				backgroundColor: '#d8e9ec',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 410,
				paddingRight: 10,
				paddingLeft: 10,
				paddingTop: 15,
				height: 200,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");

		$("<img src='/images/no-ie6.jpg' alt='' style='width: 57px; height: 60px;float: left;'/>")
			.css({
				backgroundColor: '#d8e9ec',
				'top': '50%',
				'left': '68%',
				marginLeft: -210,
				marginTop: -20,
				width: 57,
				paddingRight: 10,
				paddingLeft: 10,
				paddingTop: 15,
				height: 60,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}



