var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		
		$("<div>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: '#4d5144',
				'opacity': '1',
				'width': '100%',				
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		$("<div><strong><center>Данный сайт оптимизирован под Internet Explorer 7.0 и версии выше</center></strong><br /><br /><center>Пожалуйста обновите Ваш браузер</center></div>")
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -50,
				width: 410,
				paddingRight: 10,
				height: 200,
				'position': 'absolute',
				zIndex: 6000
			})
			.appendTo("body");
	});		
}
