Cufon.replace
('#page #top-graph p')
('#page #example .example_01 p')
('#page #example .example_02 p')
('#page #example .example_03 p')
('#page #content .box h1')
('#page #content .box1 h1')
('#page #content .box2 h1')
('#page #content .box3 h1')
('#page #content-natura h1')
('#page #content-kontakt h1')
('#page #content-galeria h1')
('#page #photos .photo p')
('#page #content #info_02 .info_02_a h3')
('#page #content #info_02 .info_03_a h3')
('#page #content #info_02 .info_04_a h3')
('#page #content #info_02 .info_02_b h3')
('#page #content #info_02 .info_03_b h3')
('#page #content #info_02 .info_04_b h3')
('#page #content #info_01 #text1 h1')
('#page #content #info_01 #text2 h1')
('#page #content #info_01 #text3 h1')
('#page #content #info_01 #text4 h1')
('#page #top ul li a', {hover: true});

  $().ready(function()
  {
  
  $("#click1").click(function()
  {
      $("#text1").hide();
      $("#text2").show();
      $("#text3").hide();
      $("#text4").hide();
  });
  
  $("#click2").click(function()
  {
      $("#text1").hide();
      $("#text2").hide();
      $("#text3").show();
      $("#text4").hide();
  });
  
  $("#click3").click(function()
  {
      $("#text1").hide();
      $("#text2").hide();
      $("#text3").hide();
      $("#text4").show();
  });                
  });

