

  /**
   * Cufón
  */
    $(document).ready(function() {

      Cufon.replace('#menu li, #logo h1, #logo p, h2, #submenu li, h3, .price, .order', {hover:true });

    });
    

  /**
   * FadeIn v galerii, treba obrazek nejdrive schovat pres css
  */
    $(document).ready(function() {
        $('#preview img').fadeIn(800);
        $('#slideshow img').fadeIn(800);
    });


  /**
   * Slideshow
  */
  $(document).ready(function() {

      //http://jquery.malsup.com/cycle/options.html
      $('#slideshow').cycle({

    		fx: 'fade',
        timeout:  6000,
        speed: 800,
        width: 800,
        height: 531,

    	});

  });


  $(document).ready(function(){

    	$('#reference h3').click(function() {
    		$(this).next().slideToggle('slow');
    		return false;
    	}).next().hide();

    });
