$(function(){
	// Cufon - Dynamicke nahrazeni fontu nadpisu
	Cufon.replace('h1, h2, h3, h4, .main-menu a, #footer .content', { 
		hover: true
	});
	
	// Externi odkazy - otvira do noveho okna
	$('a.newWindow').click(function(){
		window.open(this.href,null);
		return false;
	});
	
	// Inicializace FancyBox
    $("a[rel^='lightbox']").fancybox();
	
	
	// Je-li na stránce FB box, prizpusobíme výšku stránky tak, aby paticka nepretékala pres FB box	
	if($('#facebook').length){
		var menuHeight = $('#main-menu').height();

		if ( $.browser.msie ) {
			$('#facebook').css('top', (menuHeight+255));
			var minHeight = $('#facebook').height() + menuHeight - 110;
		}
		else {
			$('#facebook').css('top', (menuHeight+205));
			var minHeight = $('#facebook').height() + menuHeight - 160;
		}
		
		
		$('#content-wrapper').css('min-height', minHeight);			
	}
	
//ukonceni fce document ready
});
