$(document).ready(function(){

	// tohle posouva paticku pokud je levy sloupec delsi nez pravy
	$(window).resize(function() {
		if(($('#menu-container').height()+164)>$('#main').height()){
			$('#main').height($('#menu-container').height()+164);
		};
	}).trigger('resize');

	$('a.external').click(function(){return !window.open($(this).attr("href"))});

	$('.hp #header .signpost li').css({marginTop: 50}).animate({marginTop: 0},1000);
	$('.bg-red .signpost>li').css({marginTop: -500}).animate({marginTop: 0},1000);

	$('.bg-red .signpost>li>a').hover(function(){
		var $thisClass=$(this).closest('li').attr('class')
		$('#header .signpost li:not(.'+$thisClass+')').stop().animate({opacity: 0.5},'normal');
	},function(){
		$('#header .signpost li').stop().animate({opacity: 1},'normal');
	});

	$('#main .content').append('<a href="#" class="print">tisk stránky</a>').find('a.print').bind('click',function(){
		$(this).blur();
		window.print();
		return false;
	});



});
