var IE6 = (navigator.userAgent.indexOf("MSIE 6")>=0) ? true : false;
if(IE6){

	$(function(){
		
		$("<div class='ieBlocker'>")
			.css({
				'position': 'absolute',
				'top': '0px',
				'left': '0px',
				backgroundColor: 'black',
				'opacity': '0.75',
				'width': '100%',
				'height': $(window).height(),
				zIndex: 5000
			})
			.appendTo("body");
			
		
		msg="<div class='ieBlocker'><img src='/cms/images/no-ie6.png' alt='' style='float: left;'/>"
		   +"<p><br /><strong>Prepáčte! Stránka už nepodporuje Internet Explorer 6.</strong><br />"
		   +"<br />Používate viac než 8 rokov starý internetový prehliadač. "
		   +" Pre zvýšenie bezpečnosti a kompatibility si aktualizujte prehliadač."
		   +"<br /><br />"
		   +"<a href='http://getfirefox.org'>Stiahnuť Mozilla Firefox - [odporúčané]</a><br />"
		   +"<a href='http://www.google.com/chrome'>Stiahnuť Google Chrome</a><br />"
		   +"<a href='http://www.opera.com/download/'>Stiahnuť Opera Web Browser</a><br />"
		   +"<a href='http://www.microsoft.com/windows/internet-explorer/default.aspx'>Aktualizovať Internet Explorer</a><br /><br />"
		   +"<a href='#' class='closeIeBlocker'>Ignorovať varovanie a pokračovať v prehliadaní</a><br />";
		$(msg)
			.css({
				backgroundColor: 'white',
				'top': '50%',
				'left': '50%',
				marginLeft: -210,
				marginTop: -100,
				width: 560,
				paddingRight: 10,
				height: 220,
				'position': 'absolute',
				'font-size': '12px',
				'text-align': 'left',
				'line-height': 'normal',
				zIndex: 6000
			})
			.appendTo("body");
		
		
		$(".closeIeBlocker").click(function(){
			$(".ieBlocker").each(function(){ $(this).remove(); });
			setCookie('ieBlockerDisable','disable',1);
		});
		
		
		
		
		function setCookie(c_name,value,expiredays)
		{
			var exdate=new Date();
			exdate.setDate(exdate.getDate()+expiredays);
			document.cookie=c_name+ "=" +escape(value)+
			((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
		}
		
		
	});		
}
