﻿jQuery.noConflict();
jQuery(document).ready(function($){


  // focus active input
  $("input.txt, textarea.txt, input:radio").focus(function() {
    $(this).parent().addClass("focus")
  });
  $("input.txt, textarea.txt, input:radio").blur(function() {
    $(this).parent().removeClass("focus")
  })


  // datepicker
  $.datepicker.regional['cs'] = {
    closeText: 'Zavřít',
    prevText: '&#x3c;Dříve',
    nextText: 'Později&#x3e;',
    currentText: 'Nyní',
    monthNamesShort: ['leden','únor','březen','duben','květen','červen',
        'červenec','srpen','září','říjen','listopad','prosinec'],
    monthNames: ['led','úno','bře','dub','kvě','čer',
    'čvc','srp','zář','říj','lis','pro'],
    dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'],
    dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],
    dayNamesMin: ['ne','po','út','st','čt','pá','so'],
    dateFormat: 'dd. mm. yy', firstDay: 1,
    isRTL: false};
  $.datepicker.setDefaults($.datepicker.regional['cs']);

  $("#dateFrom,#dateUntil").datepicker({
    changeMonth: true,
    changeYear: true,
    showOn: 'both',
    buttonImage: '/images/calendar_empty.png',
    buttonImageOnly: true
  });

  
  if ($("#footer p").length === 1) {
    $("#footer p:first-child").css({paddingBottom:'10px'});
  };

});