var IE6 = (navigator.userAgent.indexOf("MSIE 6") >= 0) ? true : false;
if (IE6) {
	$(function () {
		$('<div></div>').css({
			'position': 'absolute',
			'top': '0px',
			'left': '0px',
			'background-color': 'black',
			'opacity': '0.8',
			'width': '100%',
			'height': $(document).height(),
			'z-index': 1000
		}).appendTo('body');
		$('<div><img src="/images/common/no-ie6.png" alt="" style="float: left;" /><br />Ez az oldal nem támogatja az Internet Explorer 6-os verzióját.<br /><br />This page doesn\'t support Internet Explorer 6.</div>').css({
			'color': 'black',
			'background-color': 'white',
			'top': '50%',
			'left': '50%',
			'margin-left': '-210px',
			'margin-top': '-100px',
			'width': '410px',
			'padding-right': '10px',
			'height': '200px',
			'position': 'absolute',
			'z-index': 1000
		}).appendTo('body');
	});
}