	$(function(){	// shorthand for $(document).ready() BTW

		$("[rel='_blank']").attr('target', '_blank'); 

		$('ul a:path').addClass('active').parent(this).addClass('active');
		
	    $("a[rel='lightbox']").lightBox({
			overlayOpacity: 0.7,
			imageBlank: '/img/lightbox/lightbox-blank.gif',
			imageLoading: '/img/lightbox/lightbox-ico-loading.gif',
			imageBtnClose: '/img/lightbox/lightbox-btn-close.gif',
			imageBtnPrev: '/img/lightbox/lightbox-btn-prev.gif',
			imageBtnNext: '/img/lightbox/lightbox-btn-next.gif',
			txtImage: 'Obrázek',
			txtOf: 'z'
		   });

		var mh = $('#main .first').height();
		var ph = $('#main .second').height();
		
		if (mh < ph) $('#main .first').css('min-height', ph);
		else $('#main .second').css('min-height', mh);
		

		if($("#slider .scroll .panel").size() > 0)
		{
			$("#slider .scroll .panel").each(function(){
				var link = $("a", this).attr('href');
				$(this).wrap('<a href="'+link+'" class="no-underline"></a>');
			});
		}

		if ($("#player").length > 0) 
		{
			flowplayer("player", "/_js/flowplayer/flowplayer-3.1.1.swf", { 
		    clip: { 
		         
		        // these two configuration variables does the trick 
		        autoPlay: false,  
		        autoBuffering: false // <- do not place a comma here   
		    } 
			});
		}

        $(".tabulka-bytu a").attr("target", "_blank");
        $(".tabulka-bytu a").attr("title", "Klikněte pro zobrazení podrobného popisu bytu.");
	
	});


