      $(document).ready(function(){
       Cufon.replace('.georgia', { fontFamily: 'Georgia'});
             
       $(".videopruvodce:not(.v2011) .play").click(function(){
        if($.browser.msie && (jQuery.browser.version == '6.0' || jQuery.browser.version == '7.0')){ window.open('http://www.youtube.com/watch?v=Yus20M7fvMI'); return false;}
        else {$.fn.colorbox({iframe:true, href:this.href, innerWidth:425, innerHeight:344, opacity:0.5}); return false; }
       });
       
       $(".videopruvodce.v2011 .play").click(function(){
        $.fn.colorbox({href:'video.html', innerWidth:720, innerHeight:410, opacity:0.5}); return false; 
       });
       
       $("a[rel='photos']").colorbox({maxWidth:800, maxHeight:800, opacity:0.5, current: '{current} z {total}'});
       $("a[rel='nove']").colorbox({maxWidth:800, maxHeight:800, opacity:0.5, current: '{current} z {total}'});
       
       $(".toggle").hide();
       $("a.toggle_but").click(function(){
         $(".toggle").toggle(500);
         var text = $(this).text();
         if(text=='zobrazit celý text')
          $(this).text("skrýt text");
         else $(this).text("zobrazit celý text");
         return false;
       });
     });
