$('document').ready(function(){
		$("table.galerie a").fancybox({hideOnContentClick:1,titleShow:0});
		$("a.fotka").fancybox({hideOnContentClick:1,titleShow:0});
		$("table.galerie img").css('opacity','0.9');
		$("table.galerie img").hover(
				function(){
						$(this).animate({
							opacity:1
						},150);
				},
				function(){
						$(this).animate({
							opacity:0.9
						},150);
				}		
		);
		$("#menu a").hover(
			function(){
				$(this).animate({
					marginTop:'-=2px'
				},100);		
			},
			function(){
				$(this).animate({
					marginTop:'+=2px'
				},100);			
			}
		);
		$('#big_logo img').hover(
		function(){
			$(this).parent().parent().css('background-image','url(images/big_logo.png)');
		},
		function(){
			$(this).parent().parent().css('background-image','url(images/big_logo_01.png)');
		}
	);
  
  
  
	$('#produkty_podmenu').hide();
  

        

  function ukaz(){ $('#produkty_podmenu').show();}
  function schovej(){ $('#produkty_podmenu').hide();}
  
  $('a.jidla').toggle(ukaz,schovej);
 
  
	
});
