 $(document).ready(function() {
   
   		  $("#iform").fancybox({
				'width'				: 440,
				'height'			: 350,
				'autoScale'			: false,
				'transitionIn'		        : 'none',
				'transitionOut'		        : 'none',
				'type'				: 'iframe'
		  });

   
		   $("a[rel=lightbox]").fancybox({
			   'transitionIn'		: 'none',
			   'transitionOut'		: 'none',
			   'titlePosition' 	: 'over',
			   'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
				   return '<span id="fancybox-title-over">Obraz ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
			   }
		   });

   });



   $(document).ready(function(){  

     
     $("ul.subnav").parent().append("<span></span>");  
     $("ul.topnav li").hover(function() { 
   
         $(this).find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click  
// !FF
//       $(this).find("ul.subnav").show(); //Drop down the subnav on click   
         $(this).hover(function() {  
         }, function(){  
               $(this).find("ul.subnav").slideUp('fast');
// FF
//             $(this).find("ul.subnav").hide();

         });  
   
         });  


   
 });  


