function badBrowser(){
	if($.browser.msie && parseInt($.browser.version) <= 7){ return true;}
	return false;
}

function getBadBrowser(c_name)
{
	if (document.cookie.length>0)
	{
	c_start=document.cookie.indexOf(c_name + "=");
	if (c_start!=-1)
		{ 
		c_start=c_start + c_name.length+1; 
		c_end=document.cookie.indexOf(";",c_start);
		if (c_end==-1) c_end=document.cookie.length;
		return unescape(document.cookie.substring(c_start,c_end));
		} 
	}
	return "";
}	

function setBadBrowser(c_name,value,expiredays)
{
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value) + ((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}

if(badBrowser() && getBadBrowser('browserWarning') != 'seen' ){
	$(function(){
		$("<div id='browserWarning'>Omluvte nedostatky v&nbsp;zobrazení stránky, prosím. Používáte zastaralou verzi prohlížeče, můžete si stáhnout aktuální verzi <a href='http://www.microsoft.com/cze/windows/default.mspx'>Internet Exploreru</a> nebo začít používat jeden z&nbsp;alternativních prohlížečů <a href='http://www.opera.com/download/'>Opera</a>, <a href='http://www.mozilla-europe.org/cs/firefox/'>Firefox</a>, <a href='http://www.apple.com/safari/'>Safari</a> nebo <a href='http://www.google.com/chrome/'>Google Chrome</a>. Děkujeme! [<a href='#' id='warningClose'>zavřít</a>]</div> ")
			.css({
				position: 'absolute', top: '0', left: '0', 'z-index': '99',
				backgroundColor: '#fcfdde',
				'width': '100%',
				'padding': '3px 0 5px 0',
				'border-bottom': 'solid 1px #000',
				'text-align': 'center',
				'line-height': '1.3em'
			})
			.prependTo("body");
		
		$('#warningClose').click(function(){
			setBadBrowser('browserWarning','seen');
			$('#browserWarning').slideUp('slow');
			return false;
		});
	});	
}
