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

	$j(function(){
		
		$j("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'white',
				'opacity': '0.75',
				'width': '100%',
				'height': $j(window).height(),
				zIndex: 8000
			})
			.appendTo("body");
			
		$j("<div><img src='http://www.h3ostudio.com/wtf_is_that_IE6.png' alt='wtf_is_that_IE6' style='float: left;'/></div>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -320,
				marginTop: -191,
				width: 640,
				height: 383,
				'position': 'absolute',
				zIndex: 9000
			})
			.appendTo("body");
	});		
}
