//var IE6 = true;
if(typeof(IE6) != "undefined" && IE6){

	$(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");
			
		$('#ie6_div').toggle();
	});		
}
