$(document).ready(function(){

   // tabs
   $('#tabs').tabs();

   // remove of default values
   $('input').focus(
       function() {
           if($(this).val() == 'Telefonní \u010díslo' ||
              $(this).val() == 'Jméno' ||
              $(this).val() == 'P\u0159íjmení' ||
              $(this).val() == 'E-mail' ||
              $(this).val() == 'Heslo' ||
              $(this).val() == 'P\u0159edmět') {
              $(this).val('')
           }
       }
   )

  $('textarea').focus(
        function() {
           if($(this).val() == 'Zpráva') {
              $(this).val('');
           }
        }
  );

   // hover effect in main menu
   $('#header ul li a').each(function() {
       if(window.location.pathname == $(this).attr('href')) {
           $(this).parent().addClass('active');
       }
   });

   // languages
   $('#langChoose').click(function() {
       $('#jazyky').toggle();
   });

   // subtraction of vms counter
   /*$("span.vmsClose").live("click", function () {
        var vmsCounter = $('.vmsCounter').text();
        vmsCounter = parseInt(vmsCounter) - 1;
        $('.vmsCounter').text(vmsCounter);
    });*/
})
