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.6',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 9998
			})
			.appendTo("body");
			
		$("<div><a href='http://www.microsoft.com/windows/internet-explorer/default.aspx' style='display:block; width:276px; height:44px; text-indent:-9999px; position:absolute; top:175px; left:112px;'>Preuzmi noviju verziju Internet Explorera!</a></div>")
			.css({
				background: 'url(images/ie6-poruka.gif) no-repeat 0 0',
				color: '#888',
				'top': '50%',
				'left': '50%',
				marginLeft: -250,
				marginTop: -125,
				width: 500,
				height: 250,
				'position': 'absolute',
				zIndex: 9999
			})
			.appendTo("body");
	});		
}
