IE6 = jQuery.browser.msie && jQuery.browser.version == '6.0';

$(function () {
	if (IE6) {
		// oddělovače v menu
		$('#menu ul li + li').addClass('li-p-li');
		$('#text p + p').addClass('p-p-p');
	}

	// vysvícení aktivní položky
	var activeLi = $('#menu ul li.active');
	if (activeLi.size() > 0) {
		if (IE6) {
			$('#menu li.active > *').css('text-decoration', 'underline');
		} else {
			activeLi = activeLi.get(0);
			var left = activeLi.offsetLeft;
			var width = activeLi.offsetWidth;
			var bgLeft = Math.round(left + width / 2 - 60);
			$('#menu ul:first').css({
				background: 'url(\'' + ROOT + 'graphics/button-hover.png\') no-repeat ' + bgLeft + 'px 0px',
				height: 36
			});
		}
	}
	
	// validní simulace target="_blank" pro sponzory
	$("p.sponzor a, a.blank").click(function () {
			window.open(this.href);
			return false;
	});
});