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.71',
				'width': '0%',
				'height': '0%',
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><center>Осторожно, вы пользуетесь старой версией браузера Internet Explorer, мы советуем скачать и установить более современную версию. <a href='http://klookva.com.ua/ie6.html'>Подробнее...</a></center>")
			.css({
				backgroundColor: 'black',
				'top': '0%',
				'left': '0%',
				'font-family':'Georgia',
				'color':'#111',
				'font-size':'11px',
				'opacity': '0.71',
				marginLeft: 0,
				marginTop: 10,
				width: 1280,
				paddingRight:7,
				height: 20,
				'position': 'absolute',
				color: 'white',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}