$(function() {
  Cufon.replace($("h2"));
  Cufon.replace($("#navigation li a span.text"));
  Cufon.replace($("div.content-box :not(.item) h3"));
  
  $("#navigation li a").mouseover(function() {
    Cufon.replace($(this), { color: 'white' } );
  }).mouseout(function() {
    if (!$(this).hasClass("active"))
      Cufon.replace($(this), { color: '#65A6DA' } );
  });
  
  $("#query").focus(function() {
    if ($(this).val()=="Vyhledávání zboží") $(this).val("");
  });
  $("#query").blur(function() {
    if ($(this).val()=="") $(this).val("Vyhledávání zboží");
  });
  $("#contact-name").focus(function() {
    if ($(this).val()=="Jméno") $(this).val("");
  });
  $("#contact-name").blur(function() {
    if ($(this).val()=="") $(this).val("Jméno");
  });
  $("#contact-email").focus(function() {
    if ($(this).val()=="E-mail") $(this).val("");
  });
  $("#contact-email").blur(function() {
    if ($(this).val()=="") $(this).val("E-mail");
  });
  $("#contact-text").focus(function() {
    if ($(this).val()=="Vzkaz") $(this).val("");
  });
  $("#contact-text").blur(function() {
    if ($(this).val()=="") $(this).val("Vzkaz");
  });

});

