// IE PNG fix
if ($.browser.msie && $.browser.version <= '6.0') {
	DD_belatedPNG.fix('.ribbon');
}

$(function() {
	// hezci bloky
	if (!($.browser.msie && $.browser.version <= '6.0' || $.browser.opera)) {
		var border = [50, 20, 100, 20];
		var margin = [-border[0], -border[1], -border[2], -border[3]];
		$('.marinablock').css({ margin: margin.join('px ')+'px' });
		$('.marinablock-box').css({ border: 'solid transparent', borderWidth: border.join('px ')+'px' });
		$('.marinablock-box').borderImage('url("images/marinablock.png") '+border.join(' '));
	}

	// stejne vysoke bloky v radku
	$('.marinablock-top').equalHeight();
	$('.marinablock-bottom').equalHeight();
	
	// titulek bloku
	$('.marinablock').each(function() {
		title = $('h2', this).text();
		if ($('h3', this).length)
			title += ' \u2013 ' + $('h3:first', this).text();
		$(this).attr('title', title);
	});

	// externi odkazy do noveho okna
	$('a[href^="http"]').attr('target', '_blank').click(function() {
		pageTracker._trackEvent('External links', 'Click', $(this).attr('href'));
	});
	
	// IE stinovani
	/*if ($.browser.msie && $.browser.version != '6.0') {
		$('.marinablock h2').wrapInner('<span></span>');
		$('.marinablock h2 span').dropShadow({ color: '#333', left: 1, top: 1, blur: 1 });
		$('.marinablock h3').dropShadow({ color: 'rgb(148, 206, 24)', left: 2, top: 2, blur: 5 });
	}*/
});
